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}}" />
|
||||
{% endfor %}
|
||||
|
||||
{% for description in article.description %}
|
||||
<meta name="description" content="{{description}}" />
|
||||
{% endfor %}
|
||||
{% if article.description %}
|
||||
<meta name="description" content="{{article.description}}" />
|
||||
{% endif %}
|
||||
|
||||
{% for tag in article.tags %}
|
||||
<meta name="tags" content="{{tag}}" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue