mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 10:22:44 +01:00 
			
		
		
		
	Usage =>
For site-wide:
    Params.disableAnchoredHeadings: true
For front-matter:
    disableAnchoredHeadings: true
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{- define "main" }}
 | 
						|
 | 
						|
<article class="post-single">
 | 
						|
  <header class="post-header">
 | 
						|
    {{ partial "breadcrumbs.html" . }}
 | 
						|
    <h1 class="post-title">
 | 
						|
      {{ .Title }}
 | 
						|
      {{- if .Draft }}<div class="entry-isdraft"><sup>  [draft]</sup></div>{{- end }}
 | 
						|
    </h1>
 | 
						|
    {{- if .Description }}
 | 
						|
    <div class="post-description">
 | 
						|
      {{ .Description }}
 | 
						|
    </div>
 | 
						|
    {{- end }}
 | 
						|
    {{- if not (.Param "hideMeta") }}
 | 
						|
    <div class="post-meta">
 | 
						|
      {{- partial "post_meta.html" . -}}
 | 
						|
      {{- partial "translation_list.html" . -}}
 | 
						|
      {{- partial "edit_post.html" . -}}
 | 
						|
    </div>
 | 
						|
    {{- end }}
 | 
						|
  </header>
 | 
						|
  {{- $isHidden := .Params.cover.hidden | default .Site.Params.cover.hiddenInSingle | default .Site.Params.cover.hidden }}
 | 
						|
  {{- partial "cover.html" (dict "cxt" . "IsHome" false "isHidden" $isHidden) }}
 | 
						|
  {{- if (.Param "ShowToc") }}
 | 
						|
  {{- partial "toc.html" . }}
 | 
						|
  {{- end }}
 | 
						|
  <div class="post-content">
 | 
						|
    {{- if not (.Param "disableAnchoredHeadings") }}
 | 
						|
    {{- partial "anchored_headings.html" .Content -}}
 | 
						|
    {{- else }}{{ .Content }}{{ end }}
 | 
						|
  </div>
 | 
						|
  <footer class="post-footer">
 | 
						|
    {{- if .Params.tags }}
 | 
						|
    <ul class="post-tags">
 | 
						|
      {{- range ($.GetTerms "tags") }}
 | 
						|
      <li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
 | 
						|
      {{- end }}
 | 
						|
    </ul>
 | 
						|
    {{- end }}
 | 
						|
    {{- if (.Param "ShowPostNavLinks") }}
 | 
						|
    {{- partial "post_nav_links.html" . }}
 | 
						|
    {{- end }}
 | 
						|
    {{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true)) }}
 | 
						|
    {{- partial "share_icons.html" . -}}
 | 
						|
    {{- end }}
 | 
						|
  </footer>
 | 
						|
 | 
						|
  {{- if (.Param "comments") }}
 | 
						|
  {{- partial "comments.html" . }}
 | 
						|
  {{- end }}
 | 
						|
</article>
 | 
						|
 | 
						|
{{- end }}{{/* end main */}}
 |