diff options
author | Minteck <nekostarfan@gmail.com> | 2021-06-05 19:27:48 +0200 |
---|---|---|
committer | Minteck <nekostarfan@gmail.com> | 2021-06-05 19:27:48 +0200 |
commit | 8cf5cefe6e91a5a1ed6eeaae4d94760d84c304a6 (patch) | |
tree | 7096b67b189c0220826123c7d5b121752545d140 /views/load.html | |
download | kartik-client-8cf5cefe6e91a5a1ed6eeaae4d94760d84c304a6.tar.gz kartik-client-8cf5cefe6e91a5a1ed6eeaae4d94760d84c304a6.tar.bz2 kartik-client-8cf5cefe6e91a5a1ed6eeaae4d94760d84c304a6.zip |
Presque sortie du jeu
Diffstat (limited to 'views/load.html')
-rw-r--r-- | views/load.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/views/load.html b/views/load.html new file mode 100644 index 0000000..b4fe8c2 --- /dev/null +++ b/views/load.html @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Kartik</title> + <style> + + * { + -webkit-app-region: drag !important; + } + + @font-face { + font-family: "Milliard SB"; + src: url("./common/load-version.otf"); + font-weight: normal; + } + + @font-face { + font-family: "Milliard"; + src: url("./common/load-channel.otf"); + font-weight: normal; + } + + </style> +</head> +<body style="overflow:hidden;margin:0;padding:0;background-color:#4b4e50;"> + <img src="splash.png" style="width:100%;"> + <span style="position: fixed;color: white;z-index: 99;top: 122px;font-size: 18px;display: inline-block;right: 309px;font-family: 'Milliard SB', sans-serif;"> + <script> + switch (require('../package.json').channel) { + case "git": + document.write(`<span style="font-family: 'Milliard', sans-serif;">TRUNK </span>`); + break; + case "nightly": + document.write(`<span style="font-family: 'Milliard', sans-serif;">NIGHTLY </span>`); + break; + case "beta": + document.write(`<span style="font-family: 'Milliard', sans-serif;">BETA </span>`); + break; + case "eap": + document.write(`<span style="font-family: 'Milliard', sans-serif;">EAP </span>`); + break; + default: + break; + } + </script> + <script> + document.write(require('../package.json').version.toUpperCase()); + </script> + </span> +</body> +</html> |