Skip to content

Instantly share code, notes, and snippets.

@andyhawthorne
Created October 17, 2012 20:35
Show Gist options
  • Select an option

  • Save andyhawthorne/3907985 to your computer and use it in GitHub Desktop.

Select an option

Save andyhawthorne/3907985 to your computer and use it in GitHub Desktop.
Sinatra posts
<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