<% var filtered = items.filter(function(item){return !((item.isBoost && !opts.boosts) || (item.isReply && !opts.replies)) })%>
<% if (filtered.length < 2){
filtered = items;// show all items if it was pared down too much
} %>
<% filtered.forEach(function(item){ %>
<% if (item.isBoost) { %>
<%- item.title %>
<% } %>
<%- item.content %>
<% if (item.enclosures.length > 0){ %>
<% } %>
<%= item.stringDate %>
<% }); %>