aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog/shared/_categories.html.erb
blob: fa26cebb05866e64dcd6d8cc55393aa55b7a05d4 (plain) (blame)
1
2
3
4
5
6
7
8
<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.posts.count})", blog_category_url(category) %>
    </li>
  <% end %>
</ul>