diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..10d4fb7 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +frontend \ No newline at end of file diff --git a/src/builds/launcher/launcher.exe b/src/builds/launcher/launcher.exe new file mode 100644 index 0000000..ba335e4 Binary files /dev/null and b/src/builds/launcher/launcher.exe differ diff --git a/src/static/css/styles-nojs.css b/src/static/css/styles-nojs.css new file mode 100644 index 0000000..6b2f599 --- /dev/null +++ b/src/static/css/styles-nojs.css @@ -0,0 +1,44 @@ +.pageContainer, .footer-js { + display: none; +} + +.nojs-warning { + position: absolute !important; + max-width: 400px !important; + text-align: center !important; + padding-top: 24px !important; + animation: blinker 2s ease-in-out infinite; +} + +@keyframes blinker { + 50% { opacity: 0; } +} + +.content-not-available { + display: grid; + position: relative; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 100%; + height: calc(100vh - 80px); + overflow: hidden; + color: #fefee1; +} + +.content-not-available .content-not-available-introduction { + width: 100%; + position: absolute; + transition: transform .2s ease; + transform: translateX(0); + text-align: center; +} + +.table-container { + margin-left: 10px; + height: 100%; +} + +.table-container a{ + color: #4FACFC; +} \ No newline at end of file diff --git a/src/static/installer/BeamMP_Installer.zip b/src/static/installer/BeamMP_Installer.zip new file mode 100644 index 0000000..28b3caf Binary files /dev/null and b/src/static/installer/BeamMP_Installer.zip differ diff --git a/src/views/includes/footer-nojs.ejs b/src/views/includes/footer-nojs.ejs new file mode 100644 index 0000000..49958c8 --- /dev/null +++ b/src/views/includes/footer-nojs.ejs @@ -0,0 +1,30 @@ + \ No newline at end of file diff --git a/src/views/includes/nav-nojs.ejs b/src/views/includes/nav-nojs.ejs new file mode 100644 index 0000000..22a518e --- /dev/null +++ b/src/views/includes/nav-nojs.ejs @@ -0,0 +1,68 @@ +
+ + + You're not using Javascript, this version of the website has limited content. + +
+
+
+ +
+
+ +
+ + + +
+
+
diff --git a/src/views/linux-builds.ejs b/src/views/linux-builds.ejs new file mode 100644 index 0000000..b603b51 --- /dev/null +++ b/src/views/linux-builds.ejs @@ -0,0 +1,65 @@ + + + + + + + + + + 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 20.04 (arm64)
+  ╚ Ubuntu 20.04 (x86/64)
+  ╚ Ubuntu 22.04 (arm64)
+  ╚ Ubuntu 22.04 (x86/64)
+
+
+ + <%- include('includes/footer-nojs.ejs') %> + \ No newline at end of file