aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/shared/_tags.html.erb
blob: f35900c91871c063d337f5ada90bb5067ec27314 (plain) (blame)
1
2
3
4
5
6
7
8
<% if @tags.any? %>
  <h2><%= t('.title') %></h2>
  <nav id='tags'>
    <% tag_cloud(@tags, %w(tag1 tag2 tag3 tag4)) do |tag, css_class| %>
      <%= link_to tag.name, main_app.refinery_blog_tagged_posts_path(tag.id, tag.name.parameterize), :class => css_class %>
    <% end %>
  </nav>
<% end %>