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:
parent
b295163142
commit
0f7938ccb7
1 changed files with 3 additions and 3 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue