Sha256: 7c1bd9b75ffa9d002a9198556d750b77c55ee3394520972a059d7f7c44b32ed7
Contents?: true
Size: 1.31 KB
Versions: 87
Compression:
Stored size: 1.31 KB
Contents
<% add_gem_component_stylesheet("translation-nav") brand ||= false brand_helper = GovukPublishingComponents::AppHelpers::BrandHelper.new(brand) translation_helper = GovukPublishingComponents::Presenters::TranslationNavHelper.new(local_assigns) %> <% if translation_helper.has_translations? %> <nav role="navigation" class="gem-c-translation-nav govuk-!-display-none-print <%= translation_helper.classes %> <%= brand_helper.brand_class %>" aria-label="<%= t("common.translations") %>" <%= "data-module=\"gem-track-click\"" if translation_helper.tracking_is_present? %> > <ul class="gem-c-translation-nav__list"> <% translation_helper.translations.each.with_index do |translation, i| %> <li class="gem-c-translation-nav__list-item"> <% if translation[:active] %> <span lang="<%= translation[:locale] %>"><%= translation[:text] %></span> <% else %> <%= link_to translation[:text], translation[:base_path], hreflang: translation[:locale], lang: translation[:locale], rel: "alternate", class: "govuk-link gem-c-translation-nav__link #{brand_helper.color_class}", data: translation[:data_attributes] %> <% end %> </li> <% end %> </ul> </nav> <% end %>
Version data entries
87 entries across 87 versions & 1 rubygems