diff options
author | Philip Arndt <p@arndt.io> | 2013-07-15 05:05:19 +1200 |
---|---|---|
committer | Philip Arndt <p@arndt.io> | 2013-07-15 05:05:19 +1200 |
commit | 7b23a4c4c8f560262a70464e86923384202b8b53 (patch) | |
tree | 2a2907816386dcda621dad07351e3eee4938d201 /app | |
parent | b9ab06148f249b7968428700d9e4490c478cbd54 (diff) | |
download | refinerycms-blog-7b23a4c4c8f560262a70464e86923384202b8b53.tar.gz refinerycms-blog-7b23a4c4c8f560262a70464e86923384202b8b53.tar.bz2 refinerycms-blog-7b23a4c4c8f560262a70464e86923384202b8b53.zip |
Fix longstanding typo filed_in -> filled_in
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/refinery/blog/frontend.css.scss | 2 | ||||
-rw-r--r-- | app/views/refinery/blog/posts/_post.html.erb | 4 | ||||
-rw-r--r-- | app/views/refinery/blog/shared/_post.html.erb | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/stylesheets/refinery/blog/frontend.css.scss b/app/assets/stylesheets/refinery/blog/frontend.css.scss index 65cecd0..f007305 100644 --- a/app/assets/stylesheets/refinery/blog/frontend.css.scss +++ b/app/assets/stylesheets/refinery/blog/frontend.css.scss @@ -3,7 +3,7 @@ } .blog_post .posted_at{ } -.post_categories .filed_in { +.post_categories .filled_in { display: inline; } .post_categories ul { diff --git a/app/views/refinery/blog/posts/_post.html.erb b/app/views/refinery/blog/posts/_post.html.erb index 9811dd2..057fbe7 100644 --- a/app/views/refinery/blog/posts/_post.html.erb +++ b/app/views/refinery/blog/posts/_post.html.erb @@ -18,8 +18,8 @@ </div> <% end %> <% if (categories = @post.categories).any? %> - <aside class='filed_in'> - <%= t('filed_in', :scope => 'refinery.blog.posts.show') %> + <aside class='filled_in'> + <%= t('filled_in', :scope => 'refinery.blog.posts.show') %> <% categories.each_with_index do |category, index| %> <%= link_to category.title, refinery.blog_category_path(category) -%><%= ',' if index < ((categories.length) - 1) %> <% end %> diff --git a/app/views/refinery/blog/shared/_post.html.erb b/app/views/refinery/blog/shared/_post.html.erb index 532d48f..5bf9c3c 100644 --- a/app/views/refinery/blog/shared/_post.html.erb +++ b/app/views/refinery/blog/shared/_post.html.erb @@ -8,8 +8,8 @@ </time> <%= "#{t('by', :scope => 'refinery.blog.posts.show')} #{post.author.username}" if post.author.present? %>. <% if (categories = post.categories.translated).any? %> - <aside class='filed_in'> - <%= t('filed_in', :scope => 'refinery.blog.posts.show') %> + <aside class='filled_in'> + <%= t('filled_in', :scope => 'refinery.blog.posts.show') %> <%=raw categories.collect { |category| link_to category.title, refinery.blog_category_path(category) }.to_sentence %> </aside> <% end %> |