1
0
mirror of https://github.com/osmarks/website synced 2025-08-31 17:57:55 +00:00

improve color gradients

This commit is contained in:
2024-01-02 16:30:31 +00:00
parent e4c79770ec
commit b12f0ae065
4 changed files with 37 additions and 25 deletions

View File

@@ -6,8 +6,8 @@ block content
p.
Read my opinions via the internet.
div.blog
each post in posts
.autocol.imbox(style=`background: ${post.bgcol}`)
each post, i in posts
.autocol.imbox(style=hashBG("blog", i))
if images.hasOwnProperty(post.slug)
+image(images[post.slug])
div
@@ -27,8 +27,8 @@ block content
p.
Various web projects I have put together over many years. Made with at least four different JS frameworks. Some of them are bad.
div.experiments
each experiment in experiments
.autocol.imbox(style=`background: ${experiment.bgcol}`)
each experiment, i in experiments
.autocol.imbox(style=hashBG("experiments", i))
if images.hasOwnProperty(experiment.slug)
+image(images[experiment.slug])
div