diff options
Diffstat (limited to 'cebong/templates/article.html')
-rw-r--r-- | cebong/templates/article.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cebong/templates/article.html b/cebong/templates/article.html index 2308d67..15569d4 100644 --- a/cebong/templates/article.html +++ b/cebong/templates/article.html @@ -1,5 +1,33 @@ {% extends "base.html" %} +{% block robots %} +{% if article.robots %}{{ article.robots }}{% else %}index,follow{% endif %} +{% endblock %} +{% block head_description %} +{% if article.summary %} +{{ article.summary|striptags }} +{% endif %} +{% endblock head_description %} {% block title %}{{ article.title|striptags }}{% endblock %} +{% block meta_tags_in_head %} +{% if article.tags and article.category %} + <meta name="keywords" content="{{ [article.tags|join(', '), article.category]|join(', ') }}" /> +{% endif %} +{% if article.category %} + <meta name="category" content="{{ article.category|striptags }}" /> +{% endif %} +{% if article.description %} + <meta name="description" content="{{ article.description|striptags }}" /> +{% elif article.summary %} + <meta name="description" content="{{ article.summary|striptags }}" /> +{% endif %} +{% if article.author %} + <meta name="author" content="{{ article.author }}" /> + <meta name="copyright" content="{{ article.author }}" /> +{% endif %} +{% if article.date %} + <meta name="date" content="{{ article.date }}"> +{% endif %} +{% endblock meta_tags_in_head %} {% block content %} <section id="content" class="body"> <article> |