Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created December 9, 2012 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyhawthorne/4247242 to your computer and use it in GitHub Desktop.
Save andyhawthorne/4247242 to your computer and use it in GitHub Desktop.
<h2>Recent Articles</h2>
<table class="table table-bordered">
<% @articles.each do |article| %>
<tr>
<td><%= link_to article.title, article %></td>
</tr>
<tr>
<td><em>Posted: <%= article.created_at.strftime('%a %d %B %Y - %H:%M') %></em></td>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment