add article post date before link on tag show pages; reverse article list from asc to desc

Changed files
+2 -2
app
views
+2 -2
app/views/tags/show.html.erb
··· 3 3 <h1>🐬 <%= render @tag %></h1> 4 4 5 5 <ul> 6 - <% @tag.articles.each do |article| %> 6 + <% @tag.articles.reverse.each do |article| %> 7 7 <li> 8 - <%= link_to article.title, article_path(article) %> 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>