Sha256: 35655cb06990001f30c1c178285c2bef82e7b978366051acee3e7abe760245f6
Contents?: true
Size: 695 Bytes
Versions: 2
Compression:
Stored size: 695 Bytes
Contents
<section> <nav class="header-nav float-right"> <% if user_can_chive? %> <%= link_to "New Article", new_article_path, class: 'btn btn-outline-primary' %> <% end %> </nav> <% @articles.each do |article| %> <article> <h2 class="large"><%= link_to article.title, article_path(article) %></h2> <address>by <%= article.byline %> on <%= article.published_at %></address> <p> <%= raw article.summary %> <%= link_to 'Read More', article_path(article) %> </p> </article> <% end %> <div class="digg_pagination"> <%= will_paginate @articles, page_links: false, previous_label: '« Newer', next_label: 'Older »' %> </div> </section>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chive-0.1.1 | app/views/chive/articles/index.html.erb |
chive-0.1.0 | app/views/chive/articles/index.html.erb |