aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/shared/_categories.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/refinery/blog/shared/_categories.html.erb')
-rw-r--r--app/views/refinery/blog/shared/_categories.html.erb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/refinery/blog/shared/_categories.html.erb b/app/views/refinery/blog/shared/_categories.html.erb
new file mode 100644
index 0000000..05cc53f
--- /dev/null
+++ b/app/views/refinery/blog/shared/_categories.html.erb
@@ -0,0 +1,10 @@
+<% if @blog_categories.any? %>
+ <h2><%= t('.title') %></h2>
+ <ul id='categories'>
+ <% @blog_categories.each do |category| %>
+ <li<%= " class='selected'" if @category.present? and @category.id == category.id %>>
+ <%= link_to "#{category.title} (#{category.post_count})", blog_category_url(category) %>
+ </li>
+ <% end %>
+ </ul>
+<% end %> \ No newline at end of file