14 lines
		
	
	
		
			465 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			465 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ $page := . }}
 | 
						|
 | 
						|
{{ with .Ancestors }}
 | 
						|
    <nav aria-label="{{ i18n `paige_breadcrumbs` }}" class="mt-3" id="paige-breadcrumbs">
 | 
						|
        <div class="d-flex justify-content-center">
 | 
						|
            <ol class="breadcrumb mb-0">
 | 
						|
                {{ range .Reverse }}
 | 
						|
                    <li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title | markdownify | safeHTML }}</a></li>
 | 
						|
                {{ end }}
 | 
						|
            </ol>
 | 
						|
        </div>
 | 
						|
    </nav>
 | 
						|
{{ end }}
 |