openalt_ro/themes/openalt/layout/_partial/feed.ejs
2025-11-21 09:09:26 +01:00

14 lines
No EOL
321 B
Text

<div>
<% page.posts.forEach(function(post) { %>
<%- include('post_preview',
{ post: post,
source: "feed"
}) %>
<% }); %>
<div class="pagination">
<% if (page.next) { %>
<a href="<%- url_for(page.next_link) %>"></a>
<% } %>
</div>
</div>