<% items.each do |item| %> <% if item.fetch(:current, false) || current_page?(item.fetch(:url)) || current_page?("#{item.fetch(:url)}/details") %>
  • <%= govuk_link_to item[:name], item[:url], class: "app-primary-navigation__link", aria: { current: "page" } %>
  • <% else %>
  • <%= govuk_link_to item[:name], item[:url], class: "app-primary-navigation__link" %>
  • <% end %> <% end %>