1
0
mirror of https://github.com/osmarks/website synced 2025-02-07 14:40:03 +00:00
website/templates/index.pug

61 lines
2.1 KiB
Plaintext
Raw Normal View History

2020-03-08 17:13:14 +00:00
extends layout.pug
block content
2024-01-02 02:23:11 +00:00
div.content
2024-02-25 21:30:23 +00:00
h2.section-header Blog
2020-03-08 17:13:14 +00:00
p.
2023-08-31 13:00:53 +01:00
Read my opinions via the internet.
div.blog
2024-01-02 16:30:31 +00:00
each post, i in posts
2024-10-25 17:13:38 +01:00
.autocol.imbox(style=hashBG("blog", i, 180))
2022-11-23 16:58:50 +00:00
if images.hasOwnProperty(post.slug)
+image(images[post.slug])
div
2022-11-23 16:58:50 +00:00
div
a.title(href=`/${post.slug}/`)= post.title
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
2024-02-25 21:30:23 +00:00
h2.section-header Microblog
p.
Short-form observations.
div.microblog
each entry in microblog
!= entry
2024-02-25 21:30:23 +00:00
h2.section-header Experiments
2020-03-08 17:13:14 +00:00
p.
2023-08-31 13:00:53 +01:00
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
2024-01-02 16:30:31 +00:00
each experiment, i in experiments
2024-10-25 17:13:38 +01:00
.autocol.imbox(style=hashBG("experiments", i, 120))
2022-11-23 16:58:50 +00:00
if images.hasOwnProperty(experiment.slug)
+image(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 22:52:23 +01:00
p Get updates to the blog (not experiments) in your favourite RSS reader using the <a href="/rss.xml">RSS feed</a>.
2024-11-21 12:02:34 +00:00
p View some of my projects at
2020-08-25 22:52:23 +01:00
a(href=`https://git.${domain}/`) my git hosting.
2024-11-21 12:02:34 +00:00
h2.section-header Other blogs
details
summary View list
ul
each url, name in otherBlogURLs
li
a(href=url)= name
div.ring
each entry in openring
!= entry
2024-11-21 12:02:34 +00:00
2023-08-31 13:00:53 +01: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