comparison app/helpers/application_helper.rb @ 26:a8b0775798c3

Added title.
author Edho Arief <edho@myconan.net>
date Mon, 10 Sep 2012 03:49:08 +0700
parents 4aa8194a1733
children 7c7b7906ebd9
comparison
equal deleted inserted replaced
25:faf30647205e 26:a8b0775798c3
1 module ApplicationHelper 1 module ApplicationHelper
2 def html_title
3 base_title = 'Zeropaste'
4 if content_for? :title
5 "#{content_for(:title)} | #{h base_title}".html_safe
6 else
7 base_title
8 end
9 end
2 end 10 end