1
0
Fork 0
forked from github/pelican

Close some HTML tags. Fix #1076

This commit is contained in:
Alexis Métaireau 2013-09-08 17:07:30 +02:00
commit 6813cd923f
67 changed files with 135 additions and 135 deletions

View file

@ -1,15 +1,15 @@
{% extends "base.html" %}
{% block head %}
{% for keyword in article.keywords %}
<meta name="keywords" contents="{{keyword}}">
<meta name="keywords" contents="{{keyword}}" />
{% endfor %}
{% for description in article.description %}
<meta name="description" contents="{{description}}">
<meta name="description" contents="{{description}}" />
{% endfor %}
{% for tag in article.tags %}
<meta name="tags" contents="{{tag}}"
<meta name="tags" contents="{{tag}}" />
{% endfor %}
{% endblock %}