mirror of
https://github.com/a2nt/cms-niceties.git
synced 2024-10-22 11:05:46 +02:00
22 lines
872 B
Scheme
Executable File
22 lines
872 B
Scheme
Executable File
<% if $Pages %>
|
|
<div class="$DefaultContainer">
|
|
<nav class="breadcrumbs" aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="/" class="breadcrumb-link">Home</a>
|
|
</li>
|
|
<% loop $Pages %>
|
|
<li
|
|
class="breadcrumb-item<% if $Last %> current active<% end_if %>"
|
|
<% if $Last %> aria-current="page"<% end_if %>
|
|
>
|
|
<% if not Up.Unlinked %><a href="$Link" class="graphql-page breadcrumb-link breadcrumb-link__$Pos"><% end_if %>
|
|
$MenuTitle.XML
|
|
<% if not Up.Unlinked %></a><% end_if %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
<% end_if %>
|