mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
layouts/single : add option to disable Post-meta
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)
This commit is contained in:
parent
799b253470
commit
274688f238
@ -6,11 +6,13 @@
|
||||
{{ .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">
|
||||
|
Loading…
Reference in New Issue
Block a user