aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/blog/posts/_nav.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/blog/posts/_nav.html.erb')
-rw-r--r--app/views/blog/posts/_nav.html.erb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/views/blog/posts/_nav.html.erb b/app/views/blog/posts/_nav.html.erb
deleted file mode 100644
index df4b435..0000000
--- a/app/views/blog/posts/_nav.html.erb
+++ /dev/null
@@ -1,11 +0,0 @@
-<nav id="next_prev_article">
- <% if @blog_post.next.present? -%>
- <%= link_to (truncate(@blog_post.next.title) + " &#187;").html_safe, @blog_post.next, :class => 'next' %>
- <% end -%>
-
- <%= link_to t('blog_home', :scope => 'blog.posts.show'), blog_root_path, :class => 'home' %>
-
- <% if @blog_post.prev.present? -%>
- <%= link_to ("&#171; " + truncate(@blog_post.prev.title)).html_safe, @blog_post.prev, :class => 'prev' %>
- <% end -%>
-</nav><!-- /next_prev_article -->