Update #15
@@ -11,6 +11,7 @@
{% endblock head_description %}
{% block meta_tags_in_head %}
+{{ super() }}
{% if article.tags or article.category or article.keywords %}
<meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" />
{% endif %}
@@ -20,6 +20,10 @@
<meta name="description" content="{% block head_description %}{{ SITE_DESCRIPTION }}{% endblock head_description %}" />
+ {% from '_includes/_defaults.html' import GOOGLE_PLUS_PROFILE_URL with context %}
+ {% if GOOGLE_PLUS_PROFILE_URL %}
+ <link rel="author" href={{GOOGLE_PLUS_PROFILE_URL}} />
+ {% endif %}
{% endblock meta_tags_in_head %}
<title>{% block title %}{{ SITENAME|striptags }}{% endblock title %}</title>
{% block head_links %}
{% if page.keywords %}
<meta name="keywords" content="{{ page.keywords }}" />