openstreetmap-website/app/helpers/title_helper.rb
2017-11-22 14:42:16 +00:00

17 lines
474 B
Ruby

require "htmlentities"
module TitleHelper
def self.coder
@coder ||= HTMLEntities.new
end
def set_title(title = nil)
if title
@title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
response.headers["X-Page-Title"] = ERB::Util.u(@title + " | " + t("layouts.project_name.title"))
else
@title = title
response.headers["X-Page-Title"] = ERB::Util.u(t("layouts.project_name.title"))
end
end
end