Skip to content

Instantly share code, notes, and snippets.

@djones
Created June 18, 2009 02:35
Show Gist options
  • Save djones/131661 to your computer and use it in GitHub Desktop.
Save djones/131661 to your computer and use it in GitHub Desktop.
<div id='blog'>
<h2>Latest posts from the blog</h2>
<% 3.times do |n| %>
<h3>
<%= link_to @posts[n][:title], @posts[n][:link] %>
</h3>
<p>
<%= truncate(strip_tags(@posts[n][:encoded]), :length => 285) %>
</p>
<% end %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment