annotate app/helpers/application_helper.rb @ 386:bf9e350f8a2b

Add styling to the alerts.
author nanaya <me@myconan.net>
date Sun, 07 Jun 2015 10:24:35 +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