mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
22 lines
No EOL
606 B
Text
22 lines
No EOL
606 B
Text
<section id="feed_preview">
|
|
|
|
<div class="feed_preview">
|
|
<% 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_feed', { post: post }) %>
|
|
<% counter = counter - 1 %>
|
|
<% } %>
|
|
<% } %>
|
|
<% }); %>
|
|
</div>
|
|
|
|
</section> |