| summaryrefslogtreecommitdiff | 
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2018-08-31 17:46:41 +0200 | 
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2018-08-31 17:46:41 +0200 | 
| commit | 12db456fddd558ae93be6300dd2d156f998760d4 (patch) | |
| tree | f689b5b8ddb683dc80facf24973e36018d9b6f27 /src/main-menu/www | |
| parent | 89beca8b32b3fcb43abcb6167709caad1ffe94ee (diff) | |
Starting to work on the main menu...
Diffstat (limited to 'src/main-menu/www')
| -rw-r--r-- | src/main-menu/www/index.html | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/src/main-menu/www/index.html b/src/main-menu/www/index.html new file mode 100644 index 0000000..b6a77e9 --- /dev/null +++ b/src/main-menu/www/index.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html> +   <head> +      <link rel="stylesheet" type="text/css" href="/css/global.css"> +      <link rel="stylesheet" type="text/css" href="/css/main-menu.css"> +      <link rel="icon" type="image/x-icon" href="/favicon.ico"> +   </head> +   <body> +      <script src="script/main.js"></script> +      <script src="../global/script/session.js"></script> +      <script src="../global/script/urlparams.js"></script> +      <script> +         tacticians_online.session.load(); + +         tacticians_online.app = +            Elm.Main.fullscreen +            ( +               { +                  user_id: tacticians_online.session.get_user_id(), +                  token: tacticians_online.session.get_token(), +                  url_params: tacticians_online.urlparams.get_parameters() +               } +            ); + +         tacticians_online.session.attach_to(tacticians_online.app); +      </script> +   </body> +</html> | 


