Merge pull request #346 from gabe565/list-date-fix

Fix list date shown as 0001-01-01 when not set
This commit is contained in:
Radek Kozieł 2022-10-22 11:31:10 +02:00 committed by GitHub
commit 8ef529a191
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -20,9 +20,11 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{- with .Date }}
<span class="post-date"> <span class="post-date">
{{ .Date.Format "2006-01-02" }} {{ .Format "2006-01-02" }}
</span> </span>
{{- end }}
{{ with .Params.Author }} {{ with .Params.Author }}
<span class="post-author">:: {{ . }}</span> <span class="post-author">:: {{ . }}</span>
{{ end }} {{ end }}

View File

@ -11,9 +11,11 @@
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1> </h1>
<div class="post-meta"> <div class="post-meta">
{{- with .Date }}
<span class="post-date"> <span class="post-date">
{{ .Date.Format "2006-01-02" }} {{ .Format "2006-01-02" }}
</span> </span>
{{- end }}
{{ with .Params.Author }} {{ with .Params.Author }}
<span class="post-author">:: {{ . }}</span> <span class="post-author">:: {{ . }}</span>
{{ end }} {{ end }}