summaryrefslogtreecommitdiffstats
path: root/apps/portal/src/index.html
blob: 0bf1fb1fd0cbb2b57a9b1eae68dadaebc64a38a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <link rel="apple-touch-icon"
          sizes="180x180"
          href="./_assets/pwa/apple-touch-icon.png">
    <link rel="icon"
          type="image/png"
          sizes="32x32"
          href="./_assets/pwa/favicon-32x32.png">
    <link rel="icon"
          type="image/png"
          sizes="16x16"
          href="./_assets/pwa/favicon-16x16.png">
    <link rel="manifest"
          href="./_assets/pwa/manifest.json">
    <link rel="mask-icon"
          href="./_assets/pwa/safari-pinned-tab.svg"
          color="#5bbad5">
    <meta name="msapplication-TileColor"
          content="#da532c">
    <link rel="icon"
          href="./_assets/pwa/favicon.svg">
    <script>
		const currentTheme = localStorage.getItem("theme");
		if (currentTheme === "light") {
			document.querySelector("html").dataset.theme = "light";
		} else {
			document.querySelector("html").dataset.theme = "dark";
		}
    </script>
    <link rel="stylesheet"
          href="./_assets/pre.css">
    <title>Projects - Greatoffice</title>
</head>

<body>

<noscript>
    This page is built with javascript. Allow it and try again.
</noscript>

<div class="fill-loader fill-loader--v4"
     id="loader"
     role="alert">
    <p class="fill-loader__label">Loading Projects...</p>
    <div aria-hidden="true">
        <div class="fill-loader__base"></div>
        <div class="fill-loader__fill"></div>
    </div>
</div>

<div id="root"></div>

<script type="module"
        src="./app/index.ts"></script>
</body>

</html>