+2
-2
app/views/tags/show.html.erb
+2
-2
app/views/tags/show.html.erb
···
3
3
<h1>🐬 <%= render @tag %></h1>
4
4
5
5
<ul>
6
6
-
<% @tag.articles.each do |article| %>
6
6
+
<% @tag.articles.reverse.each do |article| %>
7
7
<li>
8
8
-
<%= link_to article.title, article_path(article) %>
8
8
+
<div class="article_date_text"><%= article.created_at.strftime('%Y %b %d') %></div>: <%= link_to article.title, article_path(article) %>
9
9
</li>
10
10
<% end %>
11
11
</ul>