<% if (articles.length) { %>
<%
articles.sort(function(a,b){
return new Date(b.created_at) - new Date(a.created_at);
});
var maxSections = 6;
%>
<% articles.filter(function(article) {
var excludedIds = [10788122134557, 200982905];
return !excludedIds.includes(article.section_id);
}).slice(0, maxSections).forEach(function(article) { %>
<%
var section = sections.filter(function(section) { return section.id === article['section_id']; })[0] || null;
var category = (section) ? section.category_id : null;
%>
<% if (section) { %>
<% if(!article.promoted) { %>
<% } %>
<% } %>
<% }) %>
<% } %>
<% if (articles.length > 0) { %>
<%
articles.sort(function(a,b){
return new Date(b.created_at) - new Date(a.created_at);
});
var maxSections = 9;
%>
<% articles.filter(function(article) {
var excludedIds = [10788122134557, 200982905];
return !excludedIds.includes(article.section_id);
}).slice(0, maxSections).forEach(function(article) { %>
<% }) %>
<% } %>
<% if (previousArticle || nextArticle) { %>
<% if (previousArticle) { %>
<% } %>
<% if (nextArticle) { %>
<% if (nextTitle) { %>
<%= nextTitle %>
<% } %>
<%= nextArticle.title %>
<% } %>
<% } %>
Kommentarer
0 kommentarer
logga in för att lämna en kommentar.