<% @posts.each do |p| %>
<%= link_to p.title, p %>
by <%= link_to p.user.name, p.user %> on <%= p.created_at.strftime("%e. %b %Y") %>
<%= RbbCode.new.convert(p.text).html_safe %>
<% end %>
<%= link_to 'Make new Post', new_blogpost_path if current_user && current_user.rank >= rank_to_int("mod") %>