]> git.ipfire.org Git - ipfire.org.git/commitdiff
Fixed anchor in py
authorJan Paul Tuecking <earl@ipfire.org>
Thu, 9 Jul 2009 10:09:31 +0000 (12:09 +0200)
committerJan Paul Tuecking <earl@ipfire.org>
Thu, 9 Jul 2009 10:09:31 +0000 (12:09 +0200)
www/web/elements.py

index 0eef273a5ae95e4b2f88842ddce11151c6d5f33a..40d573f99bfeb59b129e2a6bbc2df4b451427c3c 100644 (file)
@@ -7,7 +7,7 @@ from info import Info
 class Box(Data):
        def __init__(self, headline, subtitle=""):
                Data.__init__(self)
-               self.w("""<div class="post"><h3>%s</h3><a name="%s"></a>""" % (headline,headline,))
+               self.w("""<div class="post"><a name="%s"></a><h3>%s</h3>""" % (headline,headline,))
                if subtitle:
                        self.w("""<div class="post_info">%s</div>""" % (subtitle,))