aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog/shared/_categories.html.erb
blob: 675271c35049c081d8eba676000b232c03e9f6fe (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.post_count})", blog_category_url(category) %>
    </li>
  <% end %>
</ul>