Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonhe/hugo_eiio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleonhe <lhe868@gmail.com>2019-10-03 09:55:10 +0300
committerleonhe <lhe868@gmail.com>2019-10-16 05:25:01 +0300
commit750a8bf1419af2fd0b92e7c665265dddc831eafe (patch)
treeaa254284ac428404bd8a547c1ebf4dc8c4ff7e21
parentf530761576d9cc58b4d52099556398039976c87b (diff)
fixed post time display error
-rw-r--r--layouts/_default/single.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index c13e853..939f683 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -4,7 +4,7 @@
<article id='post' >
<div class='title'> {{ .Title }} </div>
{{ if eq .Section "post" }}
- <span class="text-muted"><ion-icon name="ios-calendar"></ion-icon>Posted by:&nbsp;{ <time tile="创建于" itemprop="dateCreated datePublished" datetime="{{ .Date.Format "Mon Jan 2, 2006" }}">{{ .Date.Format "Mon Jan 2, 2006" }}</time> |
+ <span class="text-muted"><ion-icon name="ios-calendar"></ion-icon>Posted by:&nbsp; <time tile="创建于" itemprop="dateCreated datePublished" datetime="{{ .Date.Format "Mon Jan 2, 2006" }}">{{ .Date.Format "Mon Jan 2, 2006" }}</time> |
<ion-icon name="ios-podium"></ion-icon>Word Count: {{ .WordCount }}&nbsp;&nbsp; |
<ion-icon name="ios-time"></ion-icon> Reading Time: {{ .ReadingTime }} Minute&nbsp;&nbsp;</span>
{{ end }}