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.
16 lines
640 B
16 lines
640 B
3 years ago
|
<nav class="app-tab-navigation" aria-label="sub menu">
|
||
|
<ul class="app-tab-navigation__list">
|
||
|
<% items.each do |item| %>
|
||
|
<% if item.fetch(:current, false) || current_page?(strip_query(item.fetch(:url))) %>
|
||
|
<li class="app-tab-navigation__item app-tab-navigation__item--current">
|
||
|
<%= govuk_link_to item[:name], item[:url], class: 'app-tab-navigation__link', aria: { current: 'page' } %>
|
||
|
</li>
|
||
|
<% else %>
|
||
|
<li class="app-tab-navigation__item">
|
||
|
<%= govuk_link_to item[:name], item[:url], class: 'app-tab-navigation__link' %>
|
||
|
</li>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
</nav>
|