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,9 +1,9 @@
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
<meta charset="utf-8">
<meta charset="utf-8" />
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}">
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}" />
{% if FEED_ALL_ATOM %}
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Atom Feed" />
{% endif %}

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 %}