<%= name %>

<%= for post <- posts do %>
<%= post.title %>
<%= 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) - <%= DateTime.to_iso8601(chat.latest_message) %>
<% end %>