2020-03-08 17:13:14 +00:00
|
|
|
extends layout.pug
|
|
|
|
|
|
|
|
block content
|
2024-01-02 02:23:11 +00:00
|
|
|
div.content
|
2020-03-08 17:13:14 +00:00
|
|
|
h2 Blog
|
|
|
|
p.
|
2023-08-31 12:00:53 +00:00
|
|
|
Read my opinions via the internet.
|
2021-04-12 13:15:44 +00:00
|
|
|
div.blog
|
2020-03-08 17:13:14 +00:00
|
|
|
each post in posts
|
2024-01-02 14:55:23 +00:00
|
|
|
.autocol.imbox(style=`background: ${post.bgcol}`)
|
2022-11-23 16:58:50 +00:00
|
|
|
if images.hasOwnProperty(post.slug)
|
2023-11-19 21:06:25 +00:00
|
|
|
+image(images[post.slug])
|
2021-04-12 13:15:44 +00:00
|
|
|
div
|
2022-11-23 16:58:50 +00:00
|
|
|
div
|
|
|
|
a.title(href=`/${post.slug}/`)= post.title
|
2023-11-19 21:06:25 +00:00
|
|
|
div.deemph= `${renderDate(post.created)} / ${metricPrefix(post.wordCount, "")} words`
|
2022-11-23 16:58:50 +00:00
|
|
|
div.description!= post.description
|
2020-03-08 17:13:14 +00:00
|
|
|
|
2023-11-19 21:06:25 +00:00
|
|
|
h2 Microblog
|
|
|
|
p.
|
|
|
|
Short-form observations.
|
|
|
|
div.microblog
|
|
|
|
each entry in microblog
|
|
|
|
!= entry
|
|
|
|
|
2020-03-08 17:13:14 +00:00
|
|
|
h2 Experiments
|
|
|
|
p.
|
2023-08-31 12:00:53 +00:00
|
|
|
Various web projects I have put together over many years. Made with at least four different JS frameworks. Some of them are bad.
|
2021-04-12 13:15:44 +00:00
|
|
|
div.experiments
|
2020-03-08 17:13:14 +00:00
|
|
|
each experiment in experiments
|
2024-01-02 14:55:23 +00:00
|
|
|
.autocol.imbox(style=`background: ${experiment.bgcol}`)
|
2022-11-23 16:58:50 +00:00
|
|
|
if images.hasOwnProperty(experiment.slug)
|
2023-11-19 21:06:25 +00:00
|
|
|
+image(images[experiment.slug])
|
2021-04-12 13:15:44 +00:00
|
|
|
div
|
2022-11-23 16:58:50 +00:00
|
|
|
div
|
|
|
|
a.title(href=`/${experiment.slug}/`)= experiment.title
|
|
|
|
span.description!= experiment.description
|
2020-03-08 17:13:14 +00:00
|
|
|
|
2020-08-25 21:52:23 +00:00
|
|
|
p Get updates to the blog (not experiments) in your favourite RSS reader using the <a href="/rss.xml">RSS feed</a>.
|
2023-08-31 12:00:53 +00:00
|
|
|
p View some of my projects at
|
2020-08-25 21:52:23 +00:00
|
|
|
a(href=`https://git.${domain}/`) my git hosting.
|
|
|
|
|
2021-02-24 17:28:33 +00:00
|
|
|
.ring!= openring
|
2023-08-31 12:00:53 +00:00
|
|
|
iframe(src="https://george.gh0.pw/embed.cgi?gollark", style="border:none;width:100%;height:50px", title="Acquiesce to GEORGE.")
|
|
|
|
|
|
|
|
block under-title
|
|
|
|
h2= name
|