diff options
author | Philip Arndt <parndt@gmail.com> | 2010-08-26 21:55:04 +1200 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-08-26 21:55:04 +1200 |
commit | ca5128e5c299c6f5cacaf83860cb98526cdce94f (patch) | |
tree | 1df4a6a5be4d1edc34400dc55424e37964844a7f | |
parent | fb45a7de2f93f5e84068fa5918ebfcb6d7819158 (diff) | |
download | refinerycms-blog-ca5128e5c299c6f5cacaf83860cb98526cdce94f.tar.gz refinerycms-blog-ca5128e5c299c6f5cacaf83860cb98526cdce94f.tar.bz2 refinerycms-blog-ca5128e5c299c6f5cacaf83860cb98526cdce94f.zip |
link to categories in the side bar
-rw-r--r-- | app/views/blog_posts/_side_bar.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/blog_posts/_side_bar.html.erb b/app/views/blog_posts/_side_bar.html.erb index 56bd825..a7feedc 100644 --- a/app/views/blog_posts/_side_bar.html.erb +++ b/app/views/blog_posts/_side_bar.html.erb @@ -2,7 +2,7 @@ <ul class='categories'> <% @blog_categories.each do |category| %> <li> - <%= category.title %> + <%= link_to category.title, blog_category_url(category) %> </li> <% end %> </ul>
\ No newline at end of file |