fix coloring for tags

This commit is contained in:
albert
2011-12-07 16:53:48 -05:00
parent 8e3a6c5923
commit 746901357a
3 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@
<div class="row list-of-tags">
<strong>Tags</strong>
<% post.tag_array.each do |tag_name| %>
<span class="tag-type-<%= Tag.category_for(tag_name) %>">
<span class="category-<%= Tag.category_for(tag_name) %>">
<%= link_to(tag_name.tr("_", " "), posts_path(:tags => tag_name)) %>
</span>
<% end %>