<% title "News" %>

News

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

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

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