diff options
Diffstat (limited to 'app/views/blog/shared')
-rw-r--r-- | app/views/blog/shared/_post.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/blog/shared/_post.html.erb b/app/views/blog/shared/_post.html.erb index 558813d..7982bd0 100644 --- a/app/views/blog/shared/_post.html.erb +++ b/app/views/blog/shared/_post.html.erb @@ -15,13 +15,13 @@ <p> <%= link_to t('blog.shared.posts.read_more'), blog_post_url(post) %> - <span class='comment_count'> + <aside class='comment_count'> <% if post.comments.any? %> (<%= pluralize(post.comments.approved.count, t('blog.shared.comments.singular')) %>) <% else %> (<%= t('blog.shared.comments.none') %>) <% end %> - </span> + </aside> </p> </footer> </article> |