Files
fizzy/app/helpers/application_helper.rb
T
2025-03-29 17:22:51 +01:00

10 lines
229 B
Ruby

module ApplicationHelper
def page_title_tag
tag.title @page_title || "Fizzy"
end
def icon_tag(name, aria: { hidden: true }, size: 24, **options)
image_tag "#{name}.svg", aria: aria, size: size, **options
end
end