nav menu: add html ids to secondary nav menu links (#3844).

This commit is contained in:
evazion
2018-08-27 20:57:59 -05:00
parent 48aad062a0
commit 47e26419d3
27 changed files with 170 additions and 161 deletions

View File

@@ -1,11 +1,11 @@
<% content_for(:secondary_links) do %>
<menu>
<li><%= render "notes/quick_search" %></li>
<li><%= link_to "Listing", notes_path %></li>
<li><%= link_to "Posts", posts_path(:tags => "order:note") %></li>
<li><%= link_to "Search", search_notes_path %></li>
<li><%= link_to "History", note_versions_path %></li>
<li><%= link_to "Requests", posts_path(:tags => "translation_request") %></li>
<li><%= link_to "Help", wiki_pages_path(:title => "help:notes") %></li>
<%= subnav_link_to "Listing", notes_path %>
<%= subnav_link_to "Posts", posts_path(:tags => "order:note") %>
<%= subnav_link_to "Search", search_notes_path %>
<%= subnav_link_to "History", note_versions_path %>
<%= subnav_link_to "Requests", posts_path(:tags => "translation_request") %>
<%= subnav_link_to "Help", wiki_pages_path(:title => "help:notes") %>
</menu>
<% end %>