]> git.ipfire.org Git - ipfire.org.git/commitdiff
Move imprint to legal
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 25 Apr 2018 09:41:46 +0000 (11:41 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 25 Apr 2018 09:41:46 +0000 (11:41 +0200)
I hope the a few people less will click on it and send us
support requests over the email addresses in there.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
templates/base.html
templates/static/legal.html [moved from templates/static/imprint.html with 100% similarity]
webapp/__init__.py

index 73775cd3d3847e2500150acf556d37d79c221a0e..83533f9ecc2e5cad804d462474a966ea89fc0d21 100644 (file)
@@ -79,7 +79,7 @@
                                                                        <a href="https://planet.ipfire.org">{{ _("Planet") }}</a>
                                                                </li>
                                                                <li>
-                                                                       <a href="http://www.ipfire.org/imprint">{{ _("Imprint") }}</a>
+                                                                       <a href="http://www.ipfire.org/legal">{{ _("Legal") }}</a>
                                                                </li>
                                                        </ul>
                                                </div>
index 6dafc3e6e85d3bad6b4708c6c25981b95203f434..631a98b157ec5539b7c7873099e72e58e6152423 100644 (file)
@@ -111,6 +111,9 @@ class Application(tornado.web.Application):
                        (r"/donate", DonateHandler),
                        (r"/donation", tornado.web.RedirectHandler, { "url" : "/donate" }),
 
+                       # Old imprint
+                       (r"/imprint", tornado.web.RedirectHandler, { "url" : "/legal" }),
+
                        # RSS feed
                        (r"/news.rss", RSSNewsHandler),