diff options
author | volpino <fox91@anche.no> | 2012-08-15 15:32:16 +0200 |
---|---|---|
committer | volpino <fox91@anche.no> | 2012-08-15 15:33:44 +0200 |
commit | 269fc0afa50a77416a74aece971c55bffb621649 (patch) | |
tree | 4a7b208a68785fe8a1e5f747e504c87f9ea4c852 /euscanwww/djeuscan/templates/_base.html | |
parent | euscan: Adding missing requirement ansi2html (diff) | |
download | euscan-269fc0afa50a77416a74aece971c55bffb621649.tar.gz euscan-269fc0afa50a77416a74aece971c55bffb621649.tar.bz2 euscan-269fc0afa50a77416a74aece971c55bffb621649.zip |
euscanwww: Fixing all templates to be XHTML compliant
Signed-off-by: volpino <fox91@anche.no>
Diffstat (limited to 'euscanwww/djeuscan/templates/_base.html')
-rw-r--r-- | euscanwww/djeuscan/templates/_base.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/euscanwww/djeuscan/templates/_base.html b/euscanwww/djeuscan/templates/_base.html index 35a3e4b..2d26a33 100644 --- a/euscanwww/djeuscan/templates/_base.html +++ b/euscanwww/djeuscan/templates/_base.html @@ -1,11 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + {% load url from future %} {% load timedelta %} -<?xml version="1.0" encoding="utf8"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>{% block title %}euscan{% endblock %}</title> - <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> {% block meta %} <link rel="alternate" type="application/atom+xml" title="Global log" href="{% url "global_feed" %}" /> {% endblock %} @@ -19,7 +21,7 @@ <body> <div id="header"> <a href="http://www.gentoo.org"> - <img id="logo" src="{{ STATIC_URL }}img/gentoo_org.png" /> + <img id="logo" src="{{ STATIC_URL }}img/gentoo_org.png" alt="gentoo" /> </a> {% block header %}<h1>Ebuild Upstream Scanner (euscan)</h1>{% endblock %} </div> |