Sha256: 0e2138f581827a09f92c394e0d597e4e1785df3ce627b55f7826151c663f2745
Contents?: true
Size: 828 Bytes
Versions: 29
Compression:
Stored size: 828 Bytes
Contents
<% if posts.any? %> <div class="section"> <div class="section-heading"> <%= t(".most_commented_posts") %> </div> <% posts.each do |post| %> <div class="m-bottom"> <strong><%= link_to translated_attribute(post.title), post %></strong> <div class="author-data author-data--nopadding"> <%= render partial: "datetime", locals: { post: post } %> ยท <%= link_to "#{post_path(post)}#comments", title: t(".comments") do %> <%= icon "comment-square", class: "icon--small", aria_label: "#{t(".comments")}", role: "img" %> <%= post.comments.count %> <%= t(".comments") %> <% end %> <a href="#comments" title="<%= t(".comments") %>"></a> </div> </div> <% end %> </div> <% end %>
Version data entries
29 entries across 29 versions & 1 rubygems