aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/shared/_tags.html.erb
blob: af91d5022a979ece696b8494de0a4b436a288bf1 (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, refinery.blog_tagged_posts_path(tag.id, tag.name.parameterize), :class => css_class %>
    <% end %>
  </nav>
<% end %>