aboutsummaryrefslogtreecommitdiffstats
path: root/old-apps/projects/src/app/index.html
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-09-20 09:24:27 +0200
committerivarlovlie <git@ivarlovlie.no>2022-09-20 09:24:27 +0200
commita9072370ca1eb9a5cce928b1d487db0f307edea6 (patch)
tree59c3c23df930a8b5f888dc7813923abf4ceefed4 /old-apps/projects/src/app/index.html
parent56fa963a1d63cbe0bf28e29e717cceaa417c45c1 (diff)
downloadgreatoffice-a9072370ca1eb9a5cce928b1d487db0f307edea6.tar.xz
greatoffice-a9072370ca1eb9a5cce928b1d487db0f307edea6.zip
feat: Move old apps into it's own directory
Diffstat (limited to 'old-apps/projects/src/app/index.html')
-rw-r--r--old-apps/projects/src/app/index.html63
1 files changed, 63 insertions, 0 deletions
diff --git a/old-apps/projects/src/app/index.html b/old-apps/projects/src/app/index.html
new file mode 100644
index 0000000..7e0b0e1
--- /dev/null
+++ b/old-apps/projects/src/app/index.html
@@ -0,0 +1,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>Time Tracker</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 Time Tracker...</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="./index.ts"></script>
+</body>
+
+</html>