diff options
author | Justin Mayer <entroP@gmail.com> | 2016-01-12 16:46:45 -0800 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2016-01-12 16:46:45 -0800 |
commit | 3b812aa4523e9a7e05efe8068d0e723396d680e4 (patch) | |
tree | 7d4f8eedf13f6852bfacbda82d3ff0dbc54d1087 /cebong/templates/article.html | |
parent | 952d0e92e673daea0e772e505d1e3a38e1a6f7eb (diff) | |
parent | 42ba09847b4df973c56c48c795548ffa7e532f6b (diff) | |
download | pelican-themes-3b812aa4523e9a7e05efe8068d0e723396d680e4.tar.gz |
Merge pull request #359 from schtobia/master
Add metadata to Cebong theme
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> |