Created
October 17, 2012 20:35
-
-
Save andyhawthorne/3907985 to your computer and use it in GitHub Desktop.
Sinatra posts
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>Posts</h2> | |
| <% unless @posts.empty? %> | |
| <% @posts.each do |post| %> | |
| <p> | |
| <a href="/view/<%= post.id %>"><%= post.title %></a> - | |
| <em><%= post.created_at.strftime("%e %b %Y %H:%m:%S%p") %></em> | |
| </p> | |
| <% end %> | |
| <% else %> | |
| <p>No posts available at the moment.</p> | |
| <% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment