<%= t('ptag.eyebrow') %>

#<%= tag %>

<%= posts.length === 1 ? t('ptag.count_one', { n: posts.length }) : t('ptag.count_many', { n: posts.length }) %>

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

<%= t('ptag.empty') %>

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

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

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

    <% if (p.excerpt) { %>

    <%= p.excerpt %>

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