17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
```
|
|
metadata.layout = "default.html.ejs"
|
|
```
|
|
|
|
<div class="main">
|
|
<h1 class="page-heading"><%= tag %> posts</h1>
|
|
<p class="rss">
|
|
Subscribe to just <%= tag %> posts via <a href="/<%= tag %>/feed.xml">RSS</a>.
|
|
</p>
|
|
|
|
<% for (const post of posts) { %>
|
|
<%- include("includes/article-listing.html.ejs", { post }) %>
|
|
<% } %>
|
|
</div>
|
|
|
|
<%- include("includes/pagination.html.ejs", { pagination }) %>
|