forked from github/pelican
Merge pull request #1798 from boite/master
Correct render of article description meta
This commit is contained in:
commit
06190f1518
1 changed files with 3 additions and 3 deletions
|
|
@ -5,9 +5,9 @@
|
||||||
<meta name="keywords" content="{{keyword}}" />
|
<meta name="keywords" content="{{keyword}}" />
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% for description in article.description %}
|
{% if article.description %}
|
||||||
<meta name="description" content="{{description}}" />
|
<meta name="description" content="{{article.description}}" />
|
||||||
{% endfor %}
|
{% endif %}
|
||||||
|
|
||||||
{% for tag in article.tags %}
|
{% for tag in article.tags %}
|
||||||
<meta name="tags" content="{{tag}}" />
|
<meta name="tags" content="{{tag}}" />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue