From: Michael Tremer Date: Mon, 16 Feb 2026 16:54:21 +0000 (+0000) Subject: base: Add a simple option to go back to IPFire.org X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=38608b4cd1bc53d29f81be93e9572ea94a652e31;p=ipfire.org.git base: Add a simple option to go back to IPFire.org Signed-off-by: Michael Tremer --- diff --git a/src/templates/base.html b/src/templates/base.html index 4a5515b6..c18c0b96 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -20,6 +20,17 @@ {% block head %}{% end block %} + {% set is_subproject = False %} + + {# IPFire DBL is a subproject #} + {% if request.path.startswith("/dbl") %} + {% set is_subproject = True %} + + {# IPFire Location is a subproject #} + {% elif request.path.startswith("/location") %} + {% set is_subproject = True %} + {% end %} +