22 lines
890 B
Plaintext
22 lines
890 B
Plaintext
<h1>News</h1>
|
|
<%= link_to 'Make new Post', new_blogpost_path, class: "btn blue" if mod? %>
|
|
<div id="posts">
|
|
<% @posts.each do |p| %>
|
|
<div class="item-group with-avatar" id="post-<%= p.id %>">
|
|
<div class="header">
|
|
<%= 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 } %> <time><%= link_to p.created_at.strftime("%e. %b %Y, %H:%M"), p %></time>
|
|
<span class="comment-counter">
|
|
<%= link_to pluralize(p.comments.count, "Comment"), p %>
|
|
</span>
|
|
</div>
|
|
<div class="items">
|
|
<div class="item content post">
|
|
<h2 class="headline"><%= link_to truncate(p.title, length: 60, omission: " …"), p %></h2>
|
|
<%= render_md(p.content).html_safe %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|