aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog/posts
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/blog/posts')
-rw-r--r--app/views/blog/posts/_post.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/blog/posts/_post.html.erb b/app/views/blog/posts/_post.html.erb
index e5aabdb..6d715c3 100644
--- a/app/views/blog/posts/_post.html.erb
+++ b/app/views/blog/posts/_post.html.erb
@@ -6,7 +6,7 @@
<article id="blog_post">
<header>
<h1><%= @blog_post.title %></h1>
- <details>
+ <section class='details'>
<time datetime="<%=l @blog_post.published_at.to_date, :format => :default %>" class='posted_at'>
<%= t('blog.shared.posts.created_at', :when => l(@blog_post.published_at.to_date, :format => :short)) %>
</time><%= "#{t('blog.posts.show.by')} #{@blog_post.author.username}" if @blog_post.author.present? %>.
@@ -18,7 +18,7 @@
<% end %>
</aside>
<% end %>
- </details>
+ </section>
</header>
<%= @blog_post.body.html_safe %>