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

github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fredon <the2ne@gmail.com>2016-10-08 18:10:43 +0300
committerOlivier Fredon <the2ne@gmail.com>2016-10-08 18:10:43 +0300
commit9833086216d5bdc3d7646670689048fbcc51ab3b (patch)
tree8bc2b3d812e7bda7dd8712f48defd4772156c11a /layouts
parentf234b60fff7ec22a8d706d0ff1faa44ada31da99 (diff)
fix pagination template
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/single.html3
-rw-r--r--layouts/partials/post-meta.html4
2 files changed, 4 insertions, 3 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index b806a3f..22fa1ac 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -14,9 +14,10 @@
<section class="post-content" itemprop="articleBody">
{{ .Content }}
</section>
+ {{ partial "post-meta" . }}
</article>
</main>
- {{ partial "pagination" . }}
+
{{ partial "social" . }}
{{ partial "footer" . }}
{{ partial "konami" . }}
diff --git a/layouts/partials/post-meta.html b/layouts/partials/post-meta.html
index 3ff8e08..42658fe 100644
--- a/layouts/partials/post-meta.html
+++ b/layouts/partials/post-meta.html
@@ -1,4 +1,4 @@
-<div class="post-meta">
+<footer class="post-meta">
<section class="post-meta__date">
<time datetime="{{ .Date.Format "02 January 2006" }}" itemprop="datePublished">{{ .Date.Format "02 January 2006" }}</time>
</section>
@@ -13,4 +13,4 @@
{{ end }}
</section>
<meta itemprop="url" content="{{ .Permalink }}">
-</div>
+</footer>