<%= t('fav.title') %>
<%= t('fav.sub') %>
<% if (!posts || !posts.length) { %>
<%= t('fav.empty') %>
<% } else { %>
<% posts.forEach(function(p){ %>
<%- include('../partials/post-card', { post: p, siteUrlBase: (p._urlBase || '') }) %>
<% }); %>
<% } %>