Merge pull request #1683 from alb-i986/fix-meta-tags

Fix the meta tags added in #1057
This commit is contained in:
Justin Mayer 2015-04-30 23:51:07 +02:00
commit 3f6315fe26

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 %}