gitlabhq/app/views/tags/index.html.haml

11 lines
208 B
Plaintext
Raw Normal View History

- content_for(:body_class, "projects-page")
- content_for(:page_title) do
.grid_4
2011-11-15 09:34:30 +01:00
%h2
Tags
.tags-list
- @tags.all.each do |tag|
= link_to "#{tag.name}(#{tag.count})", tag_path(name)
2011-11-15 09:34:30 +01:00