1
0
Fork 0
dwelling-home/web/templates/mindflow.pug

47 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2023-02-05 04:43:34 +04:00
extends base.pug
block meta_description
meta(name='description' content="Updates on my infrastructure, my very important opinions and thoughts.")
2023-02-05 04:43:34 +04:00
block append head
link(href='/assets/css/mindflow.css' rel='stylesheet')
script(src='/assets/js/mindflow.js' defer='')
2023-06-03 23:31:07 +04:00
link(rel='canonical' href='/mindflow')
2023-02-05 04:43:34 +04:00
block nav
a(href='/') Home
a(href='/stuff') Stuff
a(href='/about') About
a(href='/guestbook') Guestbook
h1 Mindflow
block content
2023-05-22 21:32:09 +04:00
:go:func Mindflow(title string, posts []mindflow.Post, categories []mindflow.Category, r *http.Request)
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. :)
2023-02-05 04:43:34 +04:00
section#filter.hidden
p.center
button(name='all') All
2023-05-22 21:32:09 +04:00
each category in categories
button(name=strings.ToLower(category.Name)) #{category.Name}
2023-02-05 04:43:34 +04:00
section
if (len(posts) > 0)
each post in posts
article(id=`${post.PostID()}`)
2023-02-05 04:43:34 +04:00
header
a(href=`#${post.PostID()}`)
h3= post.Category.Name + ": " + post.Title
2023-02-05 04:43:34 +04:00
each line in strings.Split(post.Body, "\n")
if (len(line) > 0 && line[0] == '>')
2023-09-25 03:21:49 +04:00
p.quote!= line
else
p!= line
2023-02-05 04:43:34 +04:00
footer
if (post.URL != "")
a(href=post.PostURL(r.Host, false)) #{post.PostURL(r.Host, false)}
else
span
2023-02-05 04:43:34 +04:00
time(datetime=util.ToClientTimezone(post.Date, r))= util.ToClientTimezone(post.Date, r).Format(time.RFC1123)
else
p.center Nothing? There must be some... Looks like database went down.