diff options
author | Philip Arndt <parndt@gmail.com> | 2010-11-22 15:28:06 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-11-22 15:28:06 +1300 |
commit | c67c282bc47e4c0e00e91653ed4247029ef8f6f7 (patch) | |
tree | a0b273de5014af3da36b4e637632d5bb7a945fe2 /app | |
parent | e5b9af1054bbd259bde0265acf4386cdaab0ca41 (diff) | |
parent | 6a71948d0a33c71e3d441ae0d9d7de5f0183eb3b (diff) | |
download | refinerycms-blog-c67c282bc47e4c0e00e91653ed4247029ef8f6f7.tar.gz refinerycms-blog-c67c282bc47e4c0e00e91653ed4247029ef8f6f7.tar.bz2 refinerycms-blog-c67c282bc47e4c0e00e91653ed4247029ef8f6f7.zip |
Merge remote branch 'origin/master'
Diffstat (limited to 'app')
-rw-r--r-- | app/views/blog/shared/_post.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/blog/shared/_post.html.erb b/app/views/blog/shared/_post.html.erb index 1e7830a..7ca483a 100644 --- a/app/views/blog/shared/_post.html.erb +++ b/app/views/blog/shared/_post.html.erb @@ -4,13 +4,13 @@ <h1><%= link_to post.title, blog_post_url(post) %></h1> <details> <time datetime="<%= post.published_at.strftime('%Y-%m-%d') %>" class='posted_at'> - <%= t('blog.shared.posts.created_at', :when => post.published_at.strftime('%d %B %Y')) %>. + <%= t('blog.shared.posts.created_at', :when => post.published_at.strftime('%d %B %Y')) %>. </time> <% if (categories = post.categories).any? %> <aside class='filed_in'> - <%= t('.filed_in') %> + <%= t('filed_in', :scope => 'blog.posts.show') %> <% categories.each_with_index do |category, index| %> - <%= link_to category.title, blog_category_url(category) -%><%= ',' if index < ((categories.length) - 1) %> + <%= link_to category.title, blog_category_url(category) -%><%= ',' if index < ((categories.length) - 1) %> <% end %> </aside> <% end %> |