diff options
Diffstat (limited to 'src/web/_views/header_empty.php')
-rw-r--r-- | src/web/_views/header_empty.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/web/_views/header_empty.php b/src/web/_views/header_empty.php deleted file mode 100644 index cca43a1..0000000 --- a/src/web/_views/header_empty.php +++ /dev/null @@ -1,27 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <script> - <?php if ($this->main->session): ?> - var jwtStr = <?=json_encode($this->main->session['jwt'])?>; - <?php else: ?> - var jwtStr = null; - <?php endif; ?> - </script> - <?php - foreach ($js_files as $js) { - echo $this->main->link_js($js); - } - foreach ($css_files as $css) { - echo $this->main->link_css($css); - } - ?> - <title><?=$title?></title> - <!-- haa haa hee hee hoo hoo --> - <script src="https://unpkg.com/@ruffle-rs/ruffle"></script> - </head> - <body> - <div id="toast-container"> - </div> |