mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
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:
parent
b295163142
commit
0f7938ccb7
1 changed files with 3 additions and 3 deletions
|
|
@ -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 %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue