Breadcrumb

The Breadcrumb template part renders a breadcrumb path based on the navigation items of a WEM project.

Syntax

<% Breadcrumb %>

Example

<body>
    <!-- Body content -->
    <% Breadcrumb %>
    <!-- Body content -->
</body>

Generated Output

<ol id="breadcrumb" class="breadcrumb">
    <li><a href="/" target="_blank">Home</a></li>
    <li><a href="/" target="_blank">Menu 1</a></li>
    <li class="active">Submenu 1</li>
</ol>

Last updated

Was this helpful?