Put a span around post date in list pages

This commit is contained in:
BBaoVanC 2021-10-07 16:54:26 -05:00
parent 76b5f58674
commit 01e89e0249
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 12 additions and 10 deletions

View File

@ -42,18 +42,20 @@
<div class="post-metadata">
{{ if .Date }}
{{ partial "icon.html" "calendar" }}
<time datetime="{{ .Date.Format "January 2, 2006" }}" pubdate>
{{ .Date.Format "January 2, 2006" }}
</time>
<span class="date">
{{ partial "icon.html" "calendar" }}
<time datetime="{{ .Date.Format "January 2, 2006" }}" pubdate>
{{ .Date.Format "January 2, 2006" }}
</time>
{{ if ne .Lastmod .Date }}
<time datetime="{{ .Lastmod.Format "2006-01-02" }}" pubdate>
(Modified {{ .Lastmod.Format "January 2, 2006" }})
</time>
{{ end }}
{{ if ne .Lastmod .Date }}
<time datetime="{{ .Lastmod.Format "2006-01-02" }}" pubdate>
(Modified {{ .Lastmod.Format "January 2, 2006" }})
</time>
{{ end }}
{{ end }}
{{ end }}
</span>
<span class="tags">
{{ range (.GetTerms "tags") }}