aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/refinery/blog/posts/_nav.html.erb
blob: f5ea5c691f4119ccc3d2b3db86a1b4eb5faebbd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<nav id="next_prev_article">
  <% if @post.next.present? -%>
    <%= link_to h(truncate(@post.next.title)) + " &#187;".html_safe,
                refinery.blog_post_path(@post.next),
                :class => 'next' %>
  <% end -%>

  <%= link_to t('blog_home', :scope => 'refinery.blog.posts.show'),
              refinery.blog_root_path,
              :class => 'home' %>

  <% if @post.prev.present? -%>
    <%= link_to "&#171; ".html_safe + h(truncate(@post.prev.title)),
                refinery.blog_post_path(@post.prev),
                :class => 'prev' %>
  <% end -%>
</nav><!-- /next_prev_article -->