News

<%= link_to 'Make new Post', new_blogpost_path, class: "btn blue" if mod? %>
<% @posts.each do |p| %>
<%= link_to(image_tag(p.author.avatar_url(64), class: "avatar"), p.author, title: p.author.ign) %>
<%= render partial: "users/username", locals: { user: p.author } %> <%= link_to pluralize(p.comments.count, "Comment"), p %>

<%= link_to truncate(p.title, length: 60, omission: " …"), p %>

<%= render_md(p.content).html_safe %>
<% end %>