fediparty/themes/starter/layout/_partial/taglist.ejs

11 lines
285 B
Plaintext
Raw Normal View History

2018-03-12 19:31:14 +00:00
2018-03-22 01:41:55 +00:00
2018-03-12 19:31:14 +00:00
<% posts.forEach(function(item) { %>
<li class="tags__item">
2018-03-22 01:41:55 +00:00
<span class="tag__date"><%= item.date.format(config.date_format).split('-').join('.') %></span>
<a href="<%- url_for(item.path) %>" class="title">
2018-03-12 19:31:14 +00:00
<%- item.title || "Untitled" %>
</a>
</li>
<% }); %>