Files
grecia/app/components/layout/footer_component.rb
Javi Martín 8053cc5e1c Open footer description links in the same window
This is a funny one, because we were accidentally opening them in the
same window without intending to do so since commit 928312e21, since the
`sanitize` method removes the `target` attribute. So the test we're
adding already passed without these changes.
2023-10-24 16:41:03 +02:00

18 lines
441 B
Ruby

class Layout::FooterComponent < ApplicationComponent
delegate :content_block, to: :helpers
def footer_legal_content_block
content_block("footer_legal")
end
private
def open_source_link
link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"), rel: "nofollow")
end
def repository_link
link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"), rel: "nofollow")
end
end