From 391f634d6506d2785d660959955e3760b9533069 Mon Sep 17 00:00:00 2001 From: "alex.ita" Date: Mon, 8 Jan 2024 23:32:30 +0100 Subject: [PATCH] Changed Linux distro download option. Moved from drop down menu to a new page. This **will** need a new servlet in the backend. --- src/static/css/styles-nojs.css | 9 ++++- src/views/index.ejs | 11 +++++- src/views/linux-builds.ejs | 63 ++++++++++++++++++++++++++++++++++ 3 files changed, 81 insertions(+), 2 deletions(-) create mode 100644 src/views/linux-builds.ejs diff --git a/src/static/css/styles-nojs.css b/src/static/css/styles-nojs.css index 07d8997..ec1198a 100644 --- a/src/static/css/styles-nojs.css +++ b/src/static/css/styles-nojs.css @@ -34,6 +34,12 @@ text-align: center; } +.table-container { + margin-left: 10px; + height: 100%; +} + +/* .dropdown-menu-linux { position: relative; display: inline-block; @@ -67,4 +73,5 @@ .dropdown-menu-linux:hover .dropdown-menu-linux-content { display: block; -} \ No newline at end of file +} +*/ \ No newline at end of file diff --git a/src/views/index.ejs b/src/views/index.ejs index 22dbeea..1dbc9e4 100644 --- a/src/views/index.ejs +++ b/src/views/index.ejs @@ -227,18 +227,27 @@
+
+ +
+ + Debian (arm64) Ubuntu (x86/64)
Linux builds + --> diff --git a/src/views/linux-builds.ejs b/src/views/linux-builds.ejs new file mode 100644 index 0000000..3722d24 --- /dev/null +++ b/src/views/linux-builds.ejs @@ -0,0 +1,63 @@ + + + + + + + + + + Linux Builds + + + + + + + + +

List of Linux builds for BeamMP Server

+ +
+ + + + + + + + + + + + + + + + +
Debian
+  ╚ Debian 11 (arm64)
+  ╚ Debian 11 (x86/64)
+  ╚ Debian 12 (arm64)
+  ╚ Debian 12 (x86/64)
+
Ubuntu
+  ╚ Ubuntu 22.04 (arm64)
+  ╚ Ubuntu 22.04 (x86/64)
+
+
+ + <%- include('includes/footer-nojs.ejs') %> + \ No newline at end of file