Files
grecia/app/components/layout/footer_component.rb
Javi Martín 05345fb43c Extract methods in footer component
This way it'll be easier to change and refactor this code.
2023-10-24 16:41:03 +02:00

20 lines
635 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"), target: "_blank",
rel: "nofollow")
end
def repository_link
link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"), target: "_blank",
rel: "nofollow")
end
end