website/templates/index.pug

37 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-03-08 17:13:14 +00:00
extends layout.pug
block content
main
h2 Blog
p.
Stuff I say, conveniently accessible on the internet.
div.blog
2020-03-08 17:13:14 +00:00
each post in posts
2022-11-23 16:58:50 +00:00
.imbox(style=`background: ${post.bgcol}`)
if images.hasOwnProperty(post.slug)
img(src=images[post.slug])
div
2022-11-23 16:58:50 +00:00
div
a.title(href=`/${post.slug}/`)= post.title
small= renderDate(post.updated)
div.description!= post.description
2020-03-08 17:13:14 +00:00
h2 Experiments
p.
Various random somewhat useless web projects I have put together over many years. Made with at least four different JS frameworks.
div.experiments
2020-03-08 17:13:14 +00:00
each experiment in experiments
2022-11-23 16:58:50 +00:00
.imbox(style=`background: ${experiment.bgcol}`)
if images.hasOwnProperty(experiment.slug)
img(src=images[experiment.slug])
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>.
2020-08-25 21:58:34 +00:00
p View some of my projects (and whatever else) 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
iframe(src="https://george.gh0.pw/embed.cgi?gollark", style="border:none;width:100%;height:50px", title="Acquiesce to GEORGE.")