mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 02:12:49 +01:00 
			
		
		
		
	i.e. date, author-info
    can be used for posts which are just info, and not a 'post'
set `hideMeta = true` in Page Variables (https://gohugo.io/variables/page/#page-variables)
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
 | 
						|
<article class="post-single">
 | 
						|
  <header class="post-header">
 | 
						|
    <h1 class="post-title">
 | 
						|
      {{ .Title }}
 | 
						|
      {{- if .Draft }}<div class="entry-isdraft"><sup>  [draft]</sup></div>{{- end }}
 | 
						|
    </h1>
 | 
						|
    {{ if .Params.hideMeta }}{{ else }}
 | 
						|
    <div class="post-meta">
 | 
						|
      {{- if or .Params.author .Site.Params.author }}
 | 
						|
      {{- .Params.author | default .Site.Params.author }} · {{ end }}
 | 
						|
      {{- .Date.Format "January 2, 2006" -}}
 | 
						|
    </div>
 | 
						|
    {{end}}
 | 
						|
  </header>
 | 
						|
  {{ if .Params.ShowToc }}
 | 
						|
  <div class="toc">
 | 
						|
    <details>
 | 
						|
      <summary>
 | 
						|
        <div class="details">Table of Contents</div>
 | 
						|
      </summary>
 | 
						|
      <blockquote>
 | 
						|
        {{ .TableOfContents }}
 | 
						|
      </blockquote>
 | 
						|
    </details>
 | 
						|
  </div>
 | 
						|
  {{ end }}
 | 
						|
  <div class="post-content">{{ .Content }}</div>
 | 
						|
  {{- if .Params.tags }}
 | 
						|
  <footer class="post-footer">
 | 
						|
    <ul class="post-tags">
 | 
						|
      {{- range .Params.tags }}
 | 
						|
      {{- $href := print (absURL "tags/") (urlize .) }}
 | 
						|
      <li><a href="{{ $href }}">{{ . }}</a></li>
 | 
						|
      {{- end }}
 | 
						|
    </ul>
 | 
						|
    {{ if .Site.Params.ShowShareButtons }}
 | 
						|
    {{ partial "share-icons.html" . }}
 | 
						|
    {{ end }}
 | 
						|
  </footer>
 | 
						|
  {{- end }}
 | 
						|
 | 
						|
  {{- if $.Site.Params.comments }}
 | 
						|
  {{- partial "comments.html" . }}
 | 
						|
  {{- end }}
 | 
						|
</article>
 | 
						|
 | 
						|
{{ end  }}{{/* end main */}} |