www/src/app/resources/views/blog/archive.pug

14 lines
345 B
Plaintext
Raw Normal View History

2023-01-16 09:24:51 +00:00
extends template
block blog_content
2025-02-23 01:10:24 +00:00
h2 Post Archive
2023-01-16 09:24:51 +00:00
.recent-posts
each year in postYears
2025-02-23 01:10:24 +00:00
h3 #{year}
ul.plain
each post in postsByYear[year]
li
.secondary #{blogDate(post.date)}
a.title(href=blogUrl(post)) #{post.title}