remove underscores from tags from landing page

This commit is contained in:
albert
2011-10-28 19:24:40 -04:00
parent 40745a2e6e
commit 4235f0ecb3

View File

@@ -1 +1 @@
<div class="landing-post"><a href="<%= post_path(post) %>"><img src="<%= post.medium_file_url %>" width="<%= post.medium_image_width %>" height="<%= post.medium_image_height %>"><div class="data"><p><%= post.essential_tag_string %></p></div></a></div>
<div class="landing-post"><a href="<%= post_path(post) %>"><img src="<%= post.medium_file_url %>" width="<%= post.medium_image_width %>" height="<%= post.medium_image_height %>"><div class="data"><p><%= post.essential_tag_string.tr("_", " ") %></p></div></a></div>