Add lastmod to post
This commit is contained in:
parent
3894ae6990
commit
90caaa368c
|
@ -5,6 +5,7 @@ title = "Cupper"
|
||||||
theme = "cupper-hugo-theme"
|
theme = "cupper-hugo-theme"
|
||||||
googleAnalytics = "UA-123456789-1"
|
googleAnalytics = "UA-123456789-1"
|
||||||
disqusShortname = "yourdiscussshortname"
|
disqusShortname = "yourdiscussshortname"
|
||||||
|
enableGitInfo = true
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tag = "tags"
|
tag = "tags"
|
||||||
|
|
|
@ -5,6 +5,7 @@ title: Cupper
|
||||||
theme: cupper-hugo-theme
|
theme: cupper-hugo-theme
|
||||||
googleAnalytics: UA-123456789-1
|
googleAnalytics: UA-123456789-1
|
||||||
disqusShortname: yourdiscussshortname
|
disqusShortname: yourdiscussshortname
|
||||||
|
enableGitInfo: true
|
||||||
|
|
||||||
taxonomies:
|
taxonomies:
|
||||||
tag: tags
|
tag: tags
|
||||||
|
|
|
@ -6,10 +6,19 @@
|
||||||
</svg>
|
</svg>
|
||||||
{{ .Title }}
|
{{ .Title }}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<div class="date">
|
<div class="date">
|
||||||
{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
|
{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
|
||||||
<strong aria-hidden="true">Publish date: </strong>{{ .PublishDate.Format $dateFormat }}
|
{{ $publishDate := .PublishDate }}
|
||||||
|
<strong aria-hidden="true">Publish date: </strong>{{ $publishDate.Format $dateFormat }}
|
||||||
|
{{ with .Lastmod }}
|
||||||
|
{{ if gt . $publishDate }}
|
||||||
|
<br>
|
||||||
|
<strong aria-hidden="true">Last mod date: </strong>{{ .Format $dateFormat }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ with .Params.tags }}
|
{{ with .Params.tags }}
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
<strong aria-hidden="true">Tags: </strong>
|
<strong aria-hidden="true">Tags: </strong>
|
||||||
|
@ -26,9 +35,11 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if ne .Params.toc false }}
|
{{ if ne .Params.toc false }}
|
||||||
{{ partial "toc" . }}
|
{{ partial "toc" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</main>
|
</main>
|
||||||
{{ partial "disqus.html" . }}
|
{{ partial "disqus.html" . }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user