The-Navigators-Blog/source/layout/_rightcol.html.erb

13 lines
387 B
Plaintext

<td width="80%" valign="top" bgcolor="#90c2e7">
<% page_articles.each_with_index do |article, i| %>
<h2>
<%= link_to article.title, article %>
<span>
<%= article.date.strftime('%b %e') %>
</span>
</h2>
<!-- use article.summary(250) if you have Nokogiri available to show just the first 250 characters -->
<%= article.body %>
<% end %>
</td>