diff options
Diffstat (limited to 'src/templates/page.html')
-rw-r--r-- | src/templates/page.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/templates/page.html b/src/templates/page.html index 3c5d29a..fab4c1e 100644 --- a/src/templates/page.html +++ b/src/templates/page.html @@ -1,5 +1,14 @@ {% extends 'layout.html' %} +{% block head %} + {% if page.meta_desc is defined %} + <meta name="description" content="{{ page.meta_desc }}"> + {% endif %} + {% if page.meta_keywords is defined %} + <meta name="keywords" content="{{ page.meta_keywords }}"> + {% endif %} +{% endblock head %} + {% block content %} <article id="{{ page.article_id }}" class="botborder" itemprop="mainContentOfPage"> |