<%= render 'header' %>
Geeky
<% sorted_articles[0..9].each do |article| %>
<% post_date = WezM::Helpers.post_date(article) %>
-
<%= post_date.day %>
<%= post_date.strftime('%b') %>
<%= post_date.year %>
<%= article[:title] %>
<% end %>
Non-Geeky
<% sorted_articles[0..9].each do |article| %>
<% post_date = WezM::Helpers.post_date(article) %>
-
<%= post_date.day %>
<%= post_date.strftime('%b') %>
<%= post_date.year %>
<%= article[:title] %>
<% end %>
Tweets
<% sorted_articles[0..9].each do |article| %>
<% post_date = WezM::Helpers.post_date(article) %>
-
<%= post_date.day %>
<%= post_date.strftime('%b') %>
<%= post_date.year %>
<%= article[:title] %>
<% end %>
<%= render 'footer' %>