From: Michael Tremer Date: Thu, 15 Feb 2024 11:46:22 +0000 (+0000) Subject: partners: Add a new page to link to our partners X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f9e394f0c87c258f66e813543aaafe91253cddf;p=ipfire.org.git partners: Add a new page to link to our partners Signed-off-by: Michael Tremer --- diff --git a/Makefile.am b/Makefile.am index a292276e..30cee3b2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -319,6 +319,7 @@ templates_static_DATA = \ src/templates/static/about.html \ src/templates/static/legal.html \ src/templates/static/help.html \ + src/templates/static/partners.html \ src/templates/static/sitemap.html templates_staticdir = $(templatesdir)/static @@ -1008,6 +1009,7 @@ static_img_DATA = \ src/static/img/default-avatar.jpg \ src/static/img/ipfire-tux.png \ src/static/img/iuse-not-found.png \ + src/static/img/kyberio-logo.svg \ src/static/img/lightningwirelabs-logo.svg \ src/static/img/python-logo.svg \ src/static/img/tor.svg diff --git a/src/static/img/kyberio-logo.svg b/src/static/img/kyberio-logo.svg new file mode 100644 index 00000000..e858548b --- /dev/null +++ b/src/static/img/kyberio-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/templates/static/partners.html b/src/templates/static/partners.html new file mode 100644 index 00000000..6571cecc --- /dev/null +++ b/src/templates/static/partners.html @@ -0,0 +1,71 @@ +{% extends "../base.html" %} + +{% block title %}{{ _("Our Partners") }}{% end block %} + +{% block container %} +
+
+
+ +

+ Our Partners +

+
+
+
+ + {# Lightning Wire Labs #} +
+
+
+
+
+

+ Lightning Wire Labs +

+ + + {{ _("Go To Website") }} + +
+ +
+
+ {{ _( +
+
+
+
+
+
+ +
+
+
+

{{ _("Our Hosting Partners") }}

+ +
+ +
+
+
+
+{% end block %} diff --git a/src/templates/static/sitemap.html b/src/templates/static/sitemap.html index e836629b..a34e1da0 100644 --- a/src/templates/static/sitemap.html +++ b/src/templates/static/sitemap.html @@ -40,7 +40,7 @@

{{ _("Support") }}

-
+

Read The Fascinating Manual

@@ -75,6 +75,17 @@

+ +
+
+

Together Is Stronger

+

+ + {{ _("Our Partners") }} + +

+
+
diff --git a/src/web/__init__.py b/src/web/__init__.py index a8ff3683..3ca6d73d 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -212,6 +212,7 @@ class Application(tornado.web.Application): (r"/about", StaticHandler, { "template" : "static/about.html" }), (r"/legal", StaticHandler, { "template" : "static/legal.html" }), (r"/help", StaticHandler, { "template" : "static/help.html" }), + (r"/partners", StaticHandler, { "template" : "static/partners.html" }), (r"/sitemap", StaticHandler, { "template" : "static/sitemap.html" }), # API