this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tag index stuff

+2 -2
+2 -2
app/views/tags/index.html.erb
··· 7 7 <%= render "articles/navbar" %> 8 8 9 9 <ul> 10 - <% @tag.each do |tag| %> 10 + <% @tag.sort_by(&:name).each do |t| %> 11 11 <li> 12 - <%= render tag %> (<span style="color: var(--main-color);"><%= tag.articles.size %><span class="access-hidden"> post(s)</span></span>) 12 + <%= render t %> (<span style="color: var(--main-color);"><%= pluralize(t.articles.size, "post") %></span>) 13 13 </li> 14 14 <% end %> 15 15 </ul>