Created
December 8, 2012 23:24
-
-
Save andyhawthorne/4242497 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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