yarmo.eu/views/blog.pug
Yarmo Mackenbach d3bb84446f
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2020-06-11 15:43:41 +02:00

25 lines
506 B
Plaintext

extends layout
mixin entry($item)
.longform_list__item
p
| !{$item['date_formatted']} >>
a(href="{$item['urlrel']}") !{$item['title']}
block content
p
| Back to:
a(href="/") yarmo.eu
h1 Yarmo's blog
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)