2021-02-10 01:01:50 +04:00
extends base.pug
block head
link(href='/assets/css/mindflow.css' rel='stylesheet')
2022-08-31 08:08:32 +04:00
script(src='/assets/js/mindflow.js' defer='')
2021-02-10 01:01:50 +04:00
block nav
nav
a(href='/') Home
a(href='/stuff') Stuff
a(href='/about') About
a(href='/guestbook') Guestbook
h1 Mindflow
block content
2022-01-23 21:01:16 +04:00
p.center Here I post updates on websites and infrastructure, my very important opinions and thoughts no one asked for. If you'd like to subscribe to this bullshittery then #[a(href='rss.xml') RSS feed] at your service. :)
2021-02-10 01:01:50 +04:00
2022-08-31 08:08:32 +04:00
section#filter.hidden
p.center
button(name='all') All
button(name='update') Updates
button(name='diary') Diary
2021-02-10 01:01:50 +04:00
section
2022-01-21 20:58:13 +04:00
if (posts)
each post in posts
article(id=`${post.category.toLowerCase()}-${date_id(post.date, tz)}`)
2021-02-10 01:01:50 +04:00
header
2022-01-21 20:58:13 +04:00
a(href=`#${post.category.toLowerCase()}-${date_id(post.date, tz)}`)
h3= `${post.category}: ${post.title}`
each line in post.body.split('\n')
2021-02-10 01:01:50 +04:00
p!= line
footer
2022-01-21 20:58:13 +04:00
time(datetime=post.date)= date_(post.date, tz)
2021-02-10 01:01:50 +04:00
else
2022-01-21 20:58:13 +04:00
p.center Nothing? There must be some... Looks like database went down.