Cirkel
Wat er speelt bij de andere sites in mijn cirkel.
<% if (!posts.length) { %>
<% } else { %>
<%# Dezelfde view als de hoofdpagina: timeline (post-card) + grid (post-tile),
gewisseld door de view-switcher via body[data-feed-view]. De remote-posts
zijn in circle.js naar het lokale post-shape gevormd (met external_url,
zodat de kaarten naar de bron-site linken). %>
<% posts.forEach(function(post){ %>
<%- include('../partials/post-card', { post: post }) %>
<% }); %>
<% posts.forEach(function(post){ %>
<%- include('../partials/post-tile', { post: post }) %>
<% }); %>
<% } %>