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 %} {% block head %}
{{ super() }} {{ super() }}
{% for keyword in article.keywords %} {% for keyword in article.keywords %}
<meta name="keywords" contents="{{keyword}}" /> <meta name="keywords" content="{{keyword}}" />
{% endfor %} {% endfor %}
{% for description in article.description %} {% for description in article.description %}
<meta name="description" contents="{{description}}" /> <meta name="description" content="{{description}}" />
{% endfor %} {% endfor %}
{% for tag in article.tags %} {% for tag in article.tags %}
<meta name="tags" contents="{{tag}}" /> <meta name="tags" content="{{tag}}" />
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}