Tag

#<%= tag %>

<%= posts.length %> post<%= posts.length === 1 ? '' : 's' %>

<% if (!posts.length) { %>

No posts with this tag yet.

<% } else { %>
    <% posts.forEach(function(p) { %>
  1. <% if (p.cover_image_url) { %> <% } %>

    <%= p.title || '(untitled)' %>

    <%= p.author_username %><% if (p.published_at) { %> · <%= formatDate(p.published_at) %><% } %>

    <% if (p.excerpt) { %>

    <%= p.excerpt %>

    <% } %>
  2. <% }); %>
<% } %>