<%= @category.title %>

<%= simple_format @category.description %>
<% @category.articles.each do |article| %>

<%= link_to article.title, category_article_path(@category, article) %>

<%= simple_format article.description %>
<% end %>