diff options
author | Minteck <contact@minteck.org> | 2022-07-22 16:17:20 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-07-22 16:17:20 +0200 |
commit | 70397b7ef4f512ac21535d2a8fcf44dac51c8eb5 (patch) | |
tree | 01987cc830744b1886690689b8ee83ba2781cac6 /views/partials | |
parent | 87351361f00504c71aa467e1247a0d6720e404d6 (diff) | |
download | vaportrail-70397b7ef4f512ac21535d2a8fcf44dac51c8eb5.tar.gz vaportrail-70397b7ef4f512ac21535d2a8fcf44dac51c8eb5.tar.bz2 vaportrail-70397b7ef4f512ac21535d2a8fcf44dac51c8eb5.zip |
I guess it's done?
Diffstat (limited to 'views/partials')
-rw-r--r-- | views/partials/footer.ejs | 1 | ||||
-rw-r--r-- | views/partials/header.ejs | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs index 33fb1a4..d6fe6b8 100644 --- a/views/partials/footer.ejs +++ b/views/partials/footer.ejs @@ -22,6 +22,7 @@ ~ SOFTWARE. ~ --> +<br> <span style="position:fixed;right:0;top:0;z-index:999999999999;background:black;font-family:monospace;">version <%= version %> (build <%= build %>)</span> <span style="position:fixed;left:0;top:0;z-index:999999999999;background:black;font-family:monospace;">Project Vapor Trail</span> <span style="position:fixed;right:0;bottom:0;z-index:999999999999;background:black;font-family:monospace;">Not for production use.</span> diff --git a/views/partials/header.ejs b/views/partials/header.ejs index fee03d8..f04a266 100644 --- a/views/partials/header.ejs +++ b/views/partials/header.ejs @@ -25,6 +25,8 @@ <!doctype html> <html lang="en"> <head> + <meta name="X-VaporTrail-Version" content="<%= version %>"> + <meta name="X-VaporTrail-Build" content="<%= build %>"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> @@ -36,7 +38,7 @@ <link rel="stylesheet" href="/assets/about.css"> <link rel="icon" href="/assets/favicon.png" type="image/png"> <script src="/bootstrap/script.js"></script> - <title><%= title %> - The Cuties</title> + <title><%= title %> ยท The Cuties</title> </head> <body> <nav class="navbar navbar-expand-sm bg-dark navbar-dark fixed-top<% if (title !== "Home") { %> navbar-nohero<% } %>"> @@ -59,6 +61,9 @@ <li class="nav-item"> <a class="nav-link" href="/servers">Servers</a> </li> + <li class="nav-item"> + <a class="nav-link" href="https://portal.equestria.horse">Portal</a> + </li> </ul> </div> </div> |