mirror of
https://github.com/thomasjsn/hugo-theme-hello-friend.git
synced 2024-11-14 12:25:07 +01:00
Merge pull request #32 from MyIgel/fix-single-page-date
Hide date on single pages if not set
This commit is contained in:
commit
ff891dad96
@ -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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user