annotate app/helpers/application_helper.rb @ 364:dd5a107bff3d

Remove web servers from gemfile. Please install it manually through gem or whatever.
author edogawaconan <me@myconan.net>
date Sat, 14 Feb 2015 01:22:29 +0900
parents 7c7b7906ebd9
children 851432f21603
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4aa8194a1733 Initial.
Edho Arief <edho@myconan.net>
parents:
diff changeset
1 module ApplicationHelper
26
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
2 def html_title
331
7c7b7906ebd9 Some more coding style.
edogawaconan <me@myconan.net>
parents: 26
diff changeset
3 base_title = "Zeropaste"
26
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
4 if content_for? :title
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
5 "#{content_for(:title)} | #{h base_title}".html_safe
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
6 else
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
7 base_title
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
8 end
a8b0775798c3 Added title.
Edho Arief <edho@myconan.net>
parents: 0
diff changeset
9 end
0
4aa8194a1733 Initial.
Edho Arief <edho@myconan.net>
parents:
diff changeset
10 end