You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
525 B
10 lines
525 B
2 weeks ago
|
<%= govuk_header(
|
||
|
classes: "app-header app-header--orange",
|
||
|
homepage_url: Rails.application.routes.url_helpers.root_path,
|
||
|
navigation_classes: "govuk-header__navigation--end",
|
||
|
) do |component|
|
||
|
component.with_product_name(name: t("service_name"))
|
||
|
component.with_navigation_item(text: "Your account", href: Rails.application.routes.url_helpers.account_path)
|
||
|
component.with_navigation_item(text: "Sign out", href: Rails.application.routes.url_helpers.destroy_user_session_path)
|
||
|
end %>
|