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:14:20 +0300
committerOlivier Fredon <the2ne@gmail.com>2016-10-08 18:14:20 +0300
commit7268282ee764de7790184a5ac614eabecf3ad60d (patch)
tree136d88c9b6ac9abd9db26301db9c3b33b4d5662b /layouts
parent9833086216d5bdc3d7646670689048fbcc51ab3b (diff)
fix pagination syntax
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/post-meta.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/post-meta.html b/layouts/partials/post-meta.html
index 42658fe..28f58f2 100644
--- a/layouts/partials/post-meta.html
+++ b/layouts/partials/post-meta.html
@@ -4,12 +4,12 @@
</section>
<section class="post-meta__tags">
{{ range .Params.tags }}
- <a href="{{ $.Site.baseUrl }}tags/{{ . }}">{{ . }} </a>
+ <a href="{{ $.Site.baseURL }}tags/{{ . }}">{{ . }} </a>
{{ end }}
</section>
<section class="post-meta__categories">
{{ range .Params.categories }}
- <a href="{{ .Site.baseUrl }}/categories/{{ . | urlize }}">{{ . }}</a>
+ <a href="{{ .Site.baseURL }}/categories/{{ . | urlize }}">{{ . }}</a>
{{ end }}
</section>
<meta itemprop="url" content="{{ .Permalink }}">