<%= link_to(image_tag(@post.author.avatar_url(64), class: "avatar"), @post.author, title: @post.author.ign) %>
<%= link_to truncate(@post.title, length: 60, omission: " …"), p %>
<%= Sanitize.clean(GitHub::Markdown.render_gfm(@post.content), Sanitize::Config::RELAXED).html_safe %>
<%= "#{pluralize(@post.comments.length, 'comment')}." %>
<% @post.comments.each do |c| %> <%= render "comments/comment", :c => c %> <% end %> <%= render "comments/new" %>