diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2008-09-24 17:29:36 +1000 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2008-09-24 17:29:36 +1000 |
commit | e43db080161c69c5497f4fb153628dc50c22cd62 (patch) | |
tree | d61b5137314fd15be9a43a11437b17aa8df54578 /templates/base.html | |
parent | 2087fbfd96a42340e2a9057fe78cac4c3524b424 (diff) | |
download | patchwork-e43db080161c69c5497f4fb153628dc50c22cd62.tar patchwork-e43db080161c69c5497f4fb153628dc50c22cd62.tar.gz |
[html] Fix apparently-unclosed script tag
Firefox doesn't seem to grok the <script/> notation.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 1bac4a9..c6a5b03 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,12 +1,12 @@ -{% load pwurl %} -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" +{% load pwurl %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>{% block title %}Patchwork{% endblock %} - Patchwork</title> <link rel="stylesheet" type="text/css" href="/css/style.css"/> - <script language="JavaScript" type="text/javascript" src="/js/common.js" /> + <script language="JavaScript" type="text/javascript" src="/js/common.js"> + </script> {% block headers %}{% endblock %} </head> <body> |