mirror of
				https://github.com/BBaoVanC/bobatheme.git
				synced 2025-10-30 17:53:28 -05:00 
			
		
		
		
	Disabled by default, and you probably want to keep it that way. It doesn't fit in very well with the design currently. I just found it in the Hugo docs and thought I might as well put it in for safe keeping.
		
			
				
	
	
		
			14 lines
		
	
	
		
			423 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			423 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <ul class="breadcrumb">
 | |
|     {{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
 | |
| </ul>
 | |
| {{ define "breadcrumbnav" }}
 | |
| {{ if .p1.Parent }}
 | |
| {{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 )  }}
 | |
| {{ else if not .p1.IsHome }}
 | |
| {{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 )  }}
 | |
| {{ end }}
 | |
| <li{{ if eq .p1 .p2 }} class="active"{{ end }}>
 | |
|   <a href="{{ .p1.Permalink }}">{{ .p1.Title }}</a>
 | |
| </li>
 | |
| {{ end }}
 |