aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Sak <joe@joesak.com>2010-11-17 17:05:49 -0600
committerJoe Sak <joe@joesak.com>2010-11-17 17:05:49 -0600
commitc610fee93b9e20e083c68d99ee941c6b4f507cf0 (patch)
treec68421d9486c121b46728ac675ef3f97c83e0944
parent3705283322133f71c8099456f7ba43ea634856ff (diff)
downloadrefinerycms-blog-c610fee93b9e20e083c68d99ee941c6b4f507cf0.tar.gz
refinerycms-blog-c610fee93b9e20e083c68d99ee941c6b4f507cf0.tar.bz2
refinerycms-blog-c610fee93b9e20e083c68d99ee941c6b4f507cf0.zip
comment count is technically an 'aside'
-rw-r--r--app/views/blog/shared/_post.html.erb4
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>