Make h1 tags of templates not have a preceeding space.
authorBrett Parker <iDunno@sommitrealweird.co.uk>
Tue, 5 Feb 2008 00:38:50 +0000 (00:38 +0000)
committerBrett Parker <iDunno@sommitrealweird.co.uk>
Tue, 5 Feb 2008 00:38:50 +0000 (00:38 +0000)
sommitrealweird/bpcms/templates/bpcms/html.html
sommitrealweird/bpcms/templates/bpcms/rst.html

index 9388e68b266bf211ae8917a027a98fd807feead7..910429a8f51f6a30e55a6c2d3438eaf279640029 100644 (file)
@@ -2,6 +2,6 @@
 {% load markup %}
 
 {% block content %}
-<h1> {{ title }}</h1>
+<h1>{{ title }}</h1>
 {{ content }}
 {% endblock %}
index defd07930fbbdcc91870b8994464f00c0f2711fe..2b474b80588c59405256f2e55cf8cefb4f87fe93 100644 (file)
@@ -2,6 +2,6 @@
 {% load markup %}
 
 {% block content %}
-<h1> {{ title }}</h1>
+<h1>{{ title }}</h1>
 {{ content|restructuredtext }}
 {% endblock %}