committing everything before round 2
This commit is contained in:
+72
-14
@@ -1,17 +1,75 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>SoloPM</title>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link href="/assets/css/open-sans.css" rel="stylesheet" />
|
||||
<link href="/assets/css/fontawesome/all.min.css" rel="stylesheet" />
|
||||
<link href="/assets/css/nucleo-icons.css" rel="stylesheet" />
|
||||
<link href="/assets/css/nucleo-svg.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body class="m-0 font-sans antialiased font-normal text-base leading-default bg-gray-50 text-slate-500">
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
<!-- Set the base URL for all relative URLs within the document -->
|
||||
<!-- <base href="https://example.com/"> -->
|
||||
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="googlebot" content="index,follow">
|
||||
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta http-equiv="x-dns-prefetch-control" content="off">
|
||||
|
||||
<meta name="google" content="notranslate">
|
||||
<meta name="google" content="nositelinkssearchbox">
|
||||
|
||||
<meta name="rating" content="General">
|
||||
|
||||
<!-- <meta name="url" content="https://example.com/"> -->
|
||||
<!-- <meta name="subject" content="your website's subject"> -->
|
||||
<!-- <meta name="description" content="A description of the page"> -->
|
||||
|
||||
<title>Page Title</title>
|
||||
|
||||
<!-- Privacy -->
|
||||
<!-- <meta name="twitter:dnt" content="on"> -->
|
||||
<!-- <meta name="pinterest" content="nopin" description="No pinning allowed."> -->
|
||||
|
||||
<!-- analytics -->
|
||||
<!-- -->
|
||||
|
||||
<!-- Android web manifest file -->
|
||||
<!-- <link href="https://example.com/.webmanifest" rel="manifest"> -->
|
||||
|
||||
<!-- Files listing who was involved in this site and copyrights -->
|
||||
<!-- <link href="https://example.com/humans.txt" rel="author"> -->
|
||||
<!-- <link href="https://example.com/copyright.html" rel="copyright"> -->
|
||||
|
||||
<!-- Feeds -->
|
||||
<!-- <link href="https://example.com/rss.xml" type="application/rss+xml" title="RSS" rel="alternate"> -->
|
||||
<!-- <link href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3" rel="alternate"> -->
|
||||
|
||||
<!-- Favicon -->
|
||||
<!-- <link href="https://example.com/favicon.ico" rel="icon" sizes="16x16" type="image/icon"> -->
|
||||
<!-- <link href="https://example.com/favicon.svg" rel="icon" type="image/svg+xml"> -->
|
||||
<!-- <link href="https://example.com/favicon.png" rel="icon" sizes="192x192"> -->
|
||||
|
||||
<!-- Font preloads (should be done for each font file) -->
|
||||
<link href="/assets/fonts/open-sans/open-sans-600.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
||||
<link href="/assets/fonts/nucleo.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
||||
<link href="/assets/fonts/nucleo-icons.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
|
||||
|
||||
<!-- CSS -->
|
||||
<link href="/assets/css/open-sans.css" rel="stylesheet" media="screen" />
|
||||
<link href="/assets/css/fontawesome/all.min.css" rel="stylesheet" media="screen" />
|
||||
<link href="/assets/css/nucleo-icons.css" rel="stylesheet" media="screen" />
|
||||
<link href="/assets/css/nucleo-svg.css" rel="stylesheet" media="screen" />
|
||||
|
||||
<!-- JS that must be executed before the document is loaded -->
|
||||
<script>
|
||||
if (localStorage.theme === "dark" || (!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches)) {
|
||||
document.documentElement.classList.add("dark"); localStorage.theme = "dark";
|
||||
} else {
|
||||
document.documentElement.classList.remove("dark"); localStorage.theme = "light";
|
||||
}
|
||||
</script>
|
||||
<script type="module" src="/src/main.ts" defer></script>
|
||||
</head>
|
||||
<body class="m-0 font-sans font-normal antialiased text-base leading-default bg-gray-50 text-slate-500">
|
||||
<!-- <body class="font-sans antialiased"> -->
|
||||
<div id="app" class="min-h-screen"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user