diff options
-rw-r--r-- | app/views/refinery/blog/shared/_post.html.erb | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/app/views/refinery/blog/shared/_post.html.erb b/app/views/refinery/blog/shared/_post.html.erb index 40ae70b..532d48f 100644 --- a/app/views/refinery/blog/shared/_post.html.erb +++ b/app/views/refinery/blog/shared/_post.html.erb @@ -34,15 +34,11 @@ <%= link_to t('read_more', :scope => 'refinery.blog.shared.posts'), refinery.blog_post_path(post) %> <% end %> </p> - <aside class='comment_count'> - <% if Refinery::Blog::Post.comments_allowed? %> - <% if post.comments.any? %> - (<%= pluralize(post.comments.approved.count, t('singular', :scope => 'refinery.blog.shared.comments')) %>) - <% else %> - (<%= t('none', :scope => 'refinery.blog.shared.comments') %>) - <% end %> - <% end %> - </aside> + <% if Refinery::Blog::Post.comments_allowed? %> + <aside class='comment_count'> + <%= link_to "#{t('title', :scope => 'refinery.blog.posts.show.comments')} (#{post.comments.approved.count})", refinery.blog_post_path(post) << '#comments' %> + </aside> + <% end %> </footer> </article> <% end %> |