From 4d87736f4233ba90335a5ac2239f570b43c658ce Mon Sep 17 00:00:00 2001 From: Kaspar Naaber Date: Fri, 27 Oct 2017 14:58:59 +0300 Subject: [PATCH] Add SEO pagination for blog articles. --- components/template-meta.tpl | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/components/template-meta.tpl b/components/template-meta.tpl index dc0fb15..e9e3039 100644 --- a/components/template-meta.tpl +++ b/components/template-meta.tpl @@ -48,3 +48,14 @@ {% endif %} + +{% comment %}SEO pagination for blog articles.{% endcomment %} +{% if article %} + {% if article.older %} + + {% endif %} + + {% if article.newer %} + + {% endif %} +{% endif %}