guida-fediverso/themes/starter/layout/_partial/taglist.ejs

11 lines
285 B
Plaintext

<% posts.forEach(function(item) { %>
<li class="tags__item">
<span class="tag__date"><%= item.date.format(config.date_format).split('-').join('.') %></span>
<a href="<%- url_for(item.path) %>" class="title">
<%- item.title || "Untitled" %>
</a>
</li>
<% }); %>