1
0
Fork 0
forked from github/pelican

fix the meta tags added in #1028

The attribute 'contents' should be 'content'.
See http://www.w3schools.com/tags/att_meta_content.asp
This commit is contained in:
Alberto Scotto 2015-04-08 03:32:48 +02:00
commit 0f7938ccb7

View file

@ -2,15 +2,15 @@
{% block head %}
{{ super() }}
{% for keyword in article.keywords %}
<meta name="keywords" contents="{{keyword}}" />
<meta name="keywords" content="{{keyword}}" />
{% endfor %}
{% for description in article.description %}
<meta name="description" contents="{{description}}" />
<meta name="description" content="{{description}}" />
{% endfor %}
{% for tag in article.tags %}
<meta name="tags" contents="{{tag}}" />
<meta name="tags" content="{{tag}}" />
{% endfor %}
{% endblock %}