mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-03 18:02:45 +01:00 
			
		
		
		
	* Update schema_json.html * Update breadcrumbs.html --------- Co-authored-by: mumuramuri <149406589+mumuramuri@users.noreply.github.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			692 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			692 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{- if (.Param "ShowBreadCrumbs") -}}
 | 
						|
<div class="breadcrumbs">
 | 
						|
    {{- $url := replace .Parent.Permalink (printf "%s" site.Home.Permalink) "" }}
 | 
						|
    {{- $lang_url := strings.TrimPrefix (printf "%s/" .Lang) $url -}}
 | 
						|
 | 
						|
    <a href="{{ "" | absLangURL }}">{{ i18n "home" | default "Home" }}</a>
 | 
						|
    {{- $scratch := newScratch }}
 | 
						|
    {{- range $index, $element := split $lang_url "/" }}
 | 
						|
 | 
						|
    {{- $scratch.Add "path" (printf "%s/" $element )}}
 | 
						|
    {{- $bc_pg := site.GetPage ($scratch.Get "path") -}}
 | 
						|
 | 
						|
    {{- if (and ($bc_pg) (gt (len . ) 0))}}
 | 
						|
    {{- print " » " | safeHTML -}}<a href="{{ $bc_pg.Permalink }}">{{ $bc_pg.Name }}</a>
 | 
						|
    {{- end }}
 | 
						|
 | 
						|
    {{- end -}}
 | 
						|
</div>
 | 
						|
{{- end -}}
 |