<%- include('../partials/fedi-tabs', { active: 'feed' }) %>
<%= t('tl.title') %>
<%= t('tl.lead') %>
<% if (typeof success !== 'undefined' && success) { %>
<%= success %>
<% } %>
<% if (typeof error !== 'undefined' && error) { %>
<%= error %>
<% } %>
<% if (!timeline || !timeline.length) { %>
<% } else { %>
<% timeline.forEach(function(p){ %>
<%- include('../partials/tl-item', { p: p }) %>
<% }); %>
<%- include('../partials/load-more', { hasMore: hasMore, nextOffset: nextOffset, moreBase: moreBase, moreTarget: '#tl-feed', morePath: '/news' }) %>
<% } %>