9 lines
215 B
Text
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>
|
|
<% }); %>
|
|
|