From: Brett Parker Date: Tue, 5 Feb 2008 00:38:50 +0000 (+0000) Subject: Make h1 tags of templates not have a preceeding space. X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/commitdiff_plain/2e02e107aff23d09c81ac970101ebe2f9ce5e760 Make h1 tags of templates not have a preceeding space. --- diff --git a/sommitrealweird/bpcms/templates/bpcms/html.html b/sommitrealweird/bpcms/templates/bpcms/html.html index 9388e68..910429a 100644 --- a/sommitrealweird/bpcms/templates/bpcms/html.html +++ b/sommitrealweird/bpcms/templates/bpcms/html.html @@ -2,6 +2,6 @@ {% load markup %} {% block content %} -

{{ title }}

+

{{ title }}

{{ content }} {% endblock %} diff --git a/sommitrealweird/bpcms/templates/bpcms/rst.html b/sommitrealweird/bpcms/templates/bpcms/rst.html index defd079..2b474b8 100644 --- a/sommitrealweird/bpcms/templates/bpcms/rst.html +++ b/sommitrealweird/bpcms/templates/bpcms/rst.html @@ -2,6 +2,6 @@ {% load markup %} {% block content %} -

{{ title }}

+

{{ title }}

{{ content|restructuredtext }} {% endblock %}