diff 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
line wrap: on
line diff
--- a/app/helpers/application_helper.rb	Mon Sep 10 03:48:01 2012 +0700
+++ b/app/helpers/application_helper.rb	Mon Sep 10 03:49:08 2012 +0700
@@ -1,2 +1,10 @@
 module ApplicationHelper
+  def html_title
+    base_title = 'Zeropaste'
+    if content_for? :title
+      "#{content_for(:title)} | #{h base_title}".html_safe
+    else
+      base_title
+    end
+  end
 end