diff options
author | Yihui Xie | 2017-06-19 14:51:07 -0500 |
---|---|---|
committer | Yihui Xie | 2017-06-19 14:51:07 -0500 |
commit | bfe749bfdb771988c019da6b6e7bb6ab01ca5cca (patch) | |
tree | fe073757ef61a7a97893f91068843bd7d783f4be /layouts | |
parent | 4bb3052d17101512ca1f5c621d7aca66fd9638d1 (diff) | |
download | hugo-xmin-bfe749bfdb771988c019da6b6e7bb6ab01ca5cca.tar.lz hugo-xmin-bfe749bfdb771988c019da6b6e7bb6ab01ca5cca.tar.zst hugo-xmin-bfe749bfdb771988c019da6b6e7bb6ab01ca5cca.zip |
no need to be global here
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/single.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 2a4cae8..3dfda29 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -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 .Params.date }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }} </div> <main> |