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