[All Adaptavist Apps]

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Builder has some pretty extreme forms of navigation, such as menus and tree-views, and we've gone to great lengths to make sure that navigation works well with search engines:– pic showing menu and it's ul/li markup –

Section
Column

Column
Code Block

...
<li class="menuitem">View
 <ul class="submenu">
  <li class="menuitem">
   <a href="/pages/viewrecentblogposts.action?key=Builder">News</a>
  </li>
  ...
  <li class="menuitem">
   <a href="/labels/listlabels-heatmap.action?key=Builder">Labels</a>
  </li>
 </ul>
</li>
...

Menus are output in to the HTML as an unordered list of links, not as JavaScript, ensuring that search engines can understand the menus.

...