openalt_ro/themes/openalt/layout/_partial/post_preview.ejs

101 lines
No EOL
3.9 KiB
Text

<%
isEvent = false
post.tags.data.forEach(function(tag) {
if ( (tag.name == "Events") && (!isEvent) ) {
isEvent = true
}
});
%>
<!-- This is the template for the post. It is used to display the posts in the feeds. -->
<% if(isEvent) { %>
<% if(source == "index") { %>
<% if(event == 2) { %>
<div class="event-wrapper">
<img src="/images/assets/OpenAltRomania.svg" alt="<%= post.title || "Untitled" %>" style="max-height: 250px" width="300px" />
<%- include('event', { page: post }) %>
</div>
<% } else if(event == 1) { %>
<a href='<%= url_for(post.path) %>'><h1>Video of our last event: <%= post.title || "Untitled" %></h1></a>
<% if(post.event.video != "TBD") { %>
<div class="vhsky-video">
<%- post.event.video %>
</div>
<%} %>
<% } %>
<% } else { %>
<div class="post">
<div class="post-feed">
<% if(post.event.video != "TBD") { %>
<div class="post-with-video">
<% } else { %>
<div class="post-without-video">
<% } %>>
<div class="post-blerp">
<a href='<%= url_for(post.path) %>'><h2><%= post.title || "Untitled" %></h2>
<div class="date smoll">
<%- include('date', { date: post.date.toISOString() }) %></a>
</div>
<p class="post_description"><%= post.description %></p>
<a href='<%= url_for(post.path) %>'><p>Read More...</p></a>
<div class="tags smoll">
<% post.tags.data.forEach(function(tag) { %>
<a href="<%= url_for('/tags/' + tag.slug || tag.name.replace(/\s+/g, '-')) %>">#<%= tag.name %></a>
<% }); %>
</div>
</div>
<% if(post.event.video != "TBD") { %>
<div class="post-vhsky-cover">
<%- post.event.video %>
</div>
<% } %>
</div>
</div>
</div>
<% } %>
<% } else { %>
<div class="post">
<% if(post.photos && post.photos.length) { %>
<% classTag = "post-with-image" %>
<% } else { %>
<% classTag = "post-without-image" %>
<% } %>
<% if(source == "index") { %>
<div class="post-home">
<% } else if (isEvent) { %>
<div class="post-event">
<% } else { %>
<div class="post-feed">
<% } %>
<div class="<%= classTag %>">
<% if(post.photos && post.photos.length) { %>
<div class="post-cover">
<a href='<%= url_for(post.path) %>'>
<img class="gallery" src="<%- config.root %><%- post.photos[0] %>" alt="<%- post.title || 'Untitled' %>">
</a>
</div>
<% } %>
<div class="post-blerp">
<a href='<%= url_for(post.path) %>'><h2><%= post.title || "Untitled" %></h2>
<div class="date smoll">
<%- include('date', { date: post.date.toISOString() }) %></a>
</div>
<p class="post_description"><%= post.description %></p>
<a href='<%= url_for(post.path) %>'><p>Read More...</p></a>
<div class="tags smoll">
<% post.tags.data.forEach(function(tag) { %>
<a href="<%= url_for('/tags/' + tag.slug || tag.name.replace(/\s+/g, '-')) %>">#<%= tag.name %></a>
<% }); %>
</div>
</div>
</div>
</div>
</div>
<% } %>