mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
10 lines
171 B
Ruby
10 lines
171 B
Ruby
module ApplicationHelper
|
|
def page_title(title)
|
|
if title.present?
|
|
"#{title} - Dan Barber Photography"
|
|
else
|
|
"Dan Barber Photography"
|
|
end
|
|
end
|
|
end
|