yarmo.eu/views/notes.pug
Yarmo Mackenbach f1506013c9
All checks were successful
continuous-integration/drone/push Build is passing
Improved navigation system
2020-06-15 23:30:03 +02:00

30 lines
714 B
Plaintext

extends layout
mixin entry($item)
article.longform_list__item.h-entry
p
a(href="{$item['urlrel']}").p-nameu-url !{$item['title']}
br
| Posted on
time(datetime="{$item['date']}").dt-published !{$item['date_formatted']}
block content
header
nav
a(href="/about") about me
| > notes
h1 Yarmo's notes
main
p
| RSS feeds:
a(href="/rss/all") blog and notes
| |
a(href="/rss/blog") blog
| |
a(href="/rss/notes") notes
.longform_list
each $item in $posts
+entry($item)