From 2e02e107aff23d09c81ac970101ebe2f9ce5e760 Mon Sep 17 00:00:00 2001 From: Brett Parker Date: Tue, 5 Feb 2008 00:38:50 +0000 Subject: [PATCH] Make h1 tags of templates not have a preceeding space. --- sommitrealweird/bpcms/templates/bpcms/html.html | 2 +- sommitrealweird/bpcms/templates/bpcms/rst.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 %} -- 2.30.2