yarmo.eu/views/notes.pug
Yarmo Mackenbach dfebb27ce0
All checks were successful
continuous-integration/drone/push Build is passing
Fix h-entry tags
2020-06-13 22:46:35 +02:00

30 lines
698 B
Plaintext

extends layout
mixin entry($item)
article.longform_list__item.h-entry
p
a(href="{$item['urlrel']}").p-name !{$item['title']}
br
| On
time(datetime="{$item['date']}").dt-published !{$item['date_formatted']}
block content
header
p
| Back to:
a(href="/about") about me
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)