14 lines
314 B
Plaintext
14 lines
314 B
Plaintext
|
```
|
||
|
metadata.layout = "default.html.ejs"
|
||
|
```
|
||
|
|
||
|
<div class="main">
|
||
|
<h1 class="page-heading">Posts from <%= year %></h1>
|
||
|
|
||
|
<% for (const post of posts) { %>
|
||
|
<%- include("includes/article-listing.html.ejs", { post }) %>
|
||
|
<% } %>
|
||
|
</div>
|
||
|
|
||
|
<%- include("includes/pagination.html.ejs", { pagination }) %>
|