%# Archief — altijd de chronologische jaar/maand-lijst. Het archief negeert
bewust de timeline/grid-keuze (geen grid-weergave): de view-switcher is hier
grijs en springt bij klik terug naar de feed. Zie de CSS in style.css. %>
<% var _archBase = (typeof siteUrlBase !== 'undefined' && siteUrlBase) ? siteUrlBase : ''; %>
← <%= t('parch.back') %>
<%= t('parch.title') %>
<%= totalPosts === 1 ? t('parch.count_one', { n: totalPosts }) : t('parch.count_many', { n: totalPosts }) %>
<% if (totalPosts === 0) { %>
<%= t('parch.empty') %>
<% } %>
<% Object.keys(grouped).sort((a,b) => b - a).forEach(year => { %>
<%= year %>
<% Object.keys(grouped[year]).forEach(month => { %>
<%= month %>
<% grouped[year][month].forEach(post => { %>
-
<%= post.title %>
— <%= post.author_username %>
<% }); %>
<% }); %>
<% }); %>