Skip to content

Instantly share code, notes, and snippets.

@mbchoa
Last active August 29, 2015 13:56
Show Gist options
  • Save mbchoa/8875578 to your computer and use it in GitHub Desktop.
Save mbchoa/8875578 to your computer and use it in GitHub Desktop.
"Recent Posts" HTML+ERB gist
<h2>RECENT POSTS</h2>
<ol>
<% blog.articles[0...10].each do |article| %>
<li><%= link_to article.title, article %> <span><%= article.date.strftime('%b %e') %></span></li>
<% end %>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment