about summary refs log tree commit diff stats
path: root/app/views/blogs/show.html.haml
blob: 32d44bd1a2b46d381cb4be3b4c46219af92c00a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
- title @blog.title
- unless @prev.nil?
  .back-post= link_to "← #{@prev.title}", @prev
- unless @next.nil?
  .next-post= link_to "#{@next.title} →", @next
.clear
= render @blog, short: false
= show_comments(@blog)
- content_for :meta_sidebar_content do
  = link_to "Edit this post", edit_admin_blog_url(@blog.id)