openstreetmap-website/app/helpers/title_helper.rb
2020-10-28 17:15:14 +01:00

15 lines
450 B
Ruby

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