blob: 9e87e6e8b5ba2fbf6beafacfc80acd175fde6f22 (
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)) + " »").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 ("« " + h(truncate(@post.prev.title))).html_safe,
refinery.blog_post_path(@post.prev),
:class => 'prev' %>
<% end -%>
</nav><!-- /next_prev_article -->
|