diff options
author | amzrk2 | 2020-05-07 12:03:19 +0800 |
---|---|---|
committer | amzrk2 | 2020-05-07 12:03:19 +0800 |
commit | a021afb3a7115d271e356264359918b07412f66c (patch) | |
tree | a82aa8a38e3814c460f9f494f9c3dc5cac70f861 /layouts | |
parent | 5f03b6f31c4daf811d7120c6cececf032af11336 (diff) | |
download | hugo-theme-fuji-a021afb3a7115d271e356264359918b07412f66c.tar.gz hugo-theme-fuji-a021afb3a7115d271e356264359918b07412f66c.tar.bz2 hugo-theme-fuji-a021afb3a7115d271e356264359918b07412f66c.zip |
Fix a Hugo minify issue
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/post-meta.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/post-meta.html b/layouts/partials/post-meta.html index 2fd1091..80f3a16 100644 --- a/layouts/partials/post-meta.html +++ b/layouts/partials/post-meta.html @@ -1 +1 @@ -<time datetime="{{ .Date }}"><i class="fas fa-calendar-day"></i> {{ .Date.Format "2006-01-02" }}</time>{{ if .Site.Params.showWordCounter }}<span><i class="fas fa-file-alt"></i> {{ .WordCount }}{{ i18n "postMetaWordCount" }}</span>{{ end }}{{ if .Site.Params.showReadTime }}<span><i class="fas fa-clock"></i> {{ .ReadingTime }}{{ i18n "postMetaReadingTime" }}</span>{{ end }}{{ if .Params.tags }}<i class="fas fa-tag"></i> {{ range .Params.tags }}<a href="/tags/{{ . | urlize }}/">{{ . }}</a> {{ end }}{{ else }}<span>{{ i18n "postMetaNoTag" }}</span>{{ end }}
\ No newline at end of file +<time><i class="fas fa-calendar-day"></i> {{ .Date.Format "2006-01-02" }}</time>{{ if .Site.Params.showWordCounter }}<span><i class="fas fa-file-alt"></i> {{ .WordCount }}{{ i18n "postMetaWordCount" }}</span>{{ end }}{{ if .Site.Params.showReadTime }}<span><i class="fas fa-clock"></i> {{ .ReadingTime }}{{ i18n "postMetaReadingTime" }}</span>{{ end }}<span><i class="fas fa-tag"></i> {{ if .Params.tags }}{{ range .Params.tags }}<a href="/tags/{{ . | urlize }}/">{{ . }}</a> {{ end }}{{ else }}{{ i18n "postMetaNoTag" }}{{ end }}</span>
\ No newline at end of file |