tapestry/layout/archive.ejs
2025-02-10 17:38:16 +02:00

9 lines
215 B
Text

<% site.tags.forEach(function(tag) { %>
<h2><%= tag.name %></h2>
<ul>
<% tag.posts.forEach(function(post) { %>
<li><a href="<%= post.url %>"><%= post.title %></a></li>
<% }); %>
</ul>
<% }); %>