<%= subsection.name %>
<% var maxArticles = 5; %>
<% var articlesInSection = subsection.articles.slice(0, maxArticles); %>
<% if (articlesInSection.length) { %>
<% articlesInSection.forEach(function(article) { %>
-
<%= article.title %>
<% }) %>
<% if (subsection.articles.length > maxArticles) { %>
-
Ver los artículos
<% } %>
<% } %>
<% }) %>