tapestry-code/layout/archive.ejs
2026-03-27 16:47:50 +01: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>
<% }); %>