1
0
Fork 0
forked from github/pelican

Merge pull request #1798 from boite/master

Correct render of article description meta
This commit is contained in:
Kyle Fuller 2015-08-11 23:14:48 +01:00
commit 06190f1518

View file

@ -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}}" />