about summary refs log tree commit diff stats
path: root/app/views/blogs/show.html.haml
blob: 7558257819bd72eb497b04bdceecd60f8f2185ac (plain) (blame)
1
2
3
4
5
6
7
8
- 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)