summaryrefslogtreecommitdiff
path: root/src/app.html
blob: 3f564559a63d1bdd95fe76e54f6f1c3f2beb0ec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
  <script>
    var isBrave = (navigator.brave && await navigator.brave.isBrave()) || false;
     if (isBrave) {
        window.location.href = '/not-very-brave.html';
     }
  </script>
  <head>
    <meta charset="utf-8" />
    <link rel="icon" href="%sveltekit.assets%/favicon.gif" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    %sveltekit.head%
  </head>
  <body data-sveltekit-preload-data="hover">
    <div style="display: contents">%sveltekit.body%</div>
  </body>
</html>