openalt_ro/themes/openalt/layout/archive.ejs
2025-11-09 21:24:34 +01:00

11 lines
No EOL
295 B
Text

<div class="narrow_view">
<% site.posts.sort('-date').forEach(function(post) { %>
<%- include('_partial/post_feed', { post: post }) %>
<% }); %>
<div class="pagination">
<% if (page.next) { %>
<a href="<%- url_for(page.next_link) %>"></a>
<% } %>
</div>
</div>