Hide date on single pages if not set

closes #31 (Hide date on single pages when not set)
This commit is contained in:
Igor Scheller 2019-02-05 15:27:25 +01:00
parent 20599a8119
commit 0162c21fb3

View File

@ -2,9 +2,11 @@
<div class="post">
<h2 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
<div class="post-meta">
<span class="post-date">
{{ .Date.Format "2006-01-02" }}
</span>
{{ with .Date | default nil }}
<span class="post-date">
{{ .Format "2006-01-02" }}
</span>
{{ end }}
{{ with .Params.Author }}<span class="post-author">— {{ $.Site.Params.WrittenBy }} {{ . }}</span>{{ end }}
</div>