<%= name %>

<%= for post <- posts do %>
<%= post.title %>
<%= BdfrBrowser.RenderUtils.post_type_icon(post.url) %> <%= post.subreddit %> - <%= post.num_comments %> comment(s) - <%= Calendar.strftime(post.posted_at, "%Y-%m-%d") %>
<% end %>
<%= for comment <- comments do %>
<%= BdfrBrowser.RenderUtils.comment(comment.body) %>
<% end %>
<%= for chat <- chats do %>
<%= Enum.join(chat.accounts, ", ") %>
<%= chat.num_messages %> message(s) - <%= BdfrBrowser.RenderUtils.format_date(chat.latest_message, :long) %>
<%= if length(chat.tags) > 0 do %> <%= for tag <- chat.tags do %> <%= tag %> <% end %> <% end %>
<% end %>