mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
24 lines
No EOL
767 B
Text
24 lines
No EOL
767 B
Text
<section id="minifeed">
|
|
<h1>Blog posts</h1>
|
|
<div class="minifeed">
|
|
<% counter = 3 %>
|
|
<% page.posts.forEach(function(post) { %>
|
|
<% if (counter != 0) { %>
|
|
<% isEvent = false %>
|
|
<% post.tags.data.forEach(function(tag) { %>
|
|
<% if (tag.name == "Events") { %>
|
|
<% isEvent = true %>
|
|
<% } %>
|
|
<% }); %>
|
|
|
|
<% if (isEvent == false) { %>
|
|
<%- include('post_preview',
|
|
{ post: post,
|
|
source: "index"
|
|
}) %>
|
|
<% counter = counter - 1 %>
|
|
<% } %>
|
|
<% } %>
|
|
<% }); %>
|
|
</div>
|
|
</section> |