Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created December 8, 2012 23:24
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/4242497 to your computer and use it in GitHub Desktop.
Save andyhawthorne/4242497 to your computer and use it in GitHub Desktop.
<h2>Recent Drafts</h2>
<table class="table table-bordered">
<% @articles.each do |article| %>
<tr>
<td><%= article.title %></td>
</tr>
<tr>
<td><em>Posted: <%= article.created_at.strftime('%a %d %B %Y - %H:%M') %></em></td>
</tr>
<tr>
<td><a href="drafts/read_article/<%= article.id%>">Read Article</a></td>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment