|
|
@@ -9,16 +9,20 @@
|
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
|
</div>
|
|
|
<div class="post-meta">
|
|
|
- <span class="posted-on">
|
|
|
- <i class="far fa-calendar"></i>
|
|
|
- <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
|
|
- {{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
|
|
- </time>
|
|
|
- </span>
|
|
|
- <span class="reading-time">
|
|
|
- <i class="far fa-clock"></i>
|
|
|
- {{ i18n "readingTime" .ReadingTime }}
|
|
|
- </span>
|
|
|
+ <div class="date">
|
|
|
+ <span class="posted-on">
|
|
|
+ <i class="fas fa-calendar"></i>
|
|
|
+ <time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
|
|
+ {{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
|
|
+ </time>
|
|
|
+ </span>
|
|
|
+ <span class="reading-time">
|
|
|
+ <i class="fas fa-clock"></i>
|
|
|
+ {{ i18n "readingTime" .ReadingTime }}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories" . }}{{ end }}
|
|
|
+ {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags" . }}{{ end }}
|
|
|
</div>
|
|
|
</header>
|
|
|
|