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 | |
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'
-rw-r--r-- | app/views/blog/shared/_post.html.erb | 6 | ||||
-rw-r--r-- | config/routes.rb | 6 |
2 files changed, 6 insertions, 6 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 %> diff --git a/config/routes.rb b/config/routes.rb index 01fb501..f3dddd4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -6,8 +6,8 @@ if Rails.version < '3.0.0' blog.post ':id', :controller => "posts", :action => 'show' blog.category 'categories/:id', :controller => "categories", :action => 'show' blog.post_blog_comments ':id/comments', :controller => 'posts', :action => 'comment' - - + + ## what is the rails2 syntax for this? sorry ;__; # get 'archive/:year/:month', :to => 'posts#archive', :as => 'archive_blog_posts' end @@ -45,7 +45,7 @@ else end scope(:path => 'refinery', :as => 'admin', :module => 'admin') do - scope(:path => 'blog', :name_prefix => 'admin', :as => 'blog', :module => 'blog') do + scope(:path => 'blog', :as => 'blog', :module => 'blog') do root :to => 'posts#index' resources :posts |