<%= _("GetText Sample Blog on RoR") %>

<%= link_to _('New article'), new_article_path %>

<% if @articles.size == 0 %>

<%= _("No articles were found.") %>

<% else %> <% @articles.each_with_index do |article, index| %> <%= show_article(article) %> <% break if index > 1 end %> <% end %>