Correct date check in single.html. (#25)

This commit is contained in:
Shimmy Xu 2018-02-18 20:10:16 -08:00 committed by Yihui Xie
parent 04a720a54b
commit 6b05e21804
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<div class="article-meta">
<h1><span class="title">{{ .Title }}</span></h1>
{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if .Params.date }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
</div>
<main>