mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-28 07:51:20 +00:00
57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<!-- Primary Meta Tags -->
|
|
<meta
|
|
name="description"
|
|
content="Self-hostable dashboard using connectors to a multitude of ticketing systems"
|
|
/>
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="Omnidash - Keep your operation teams sane" />
|
|
<meta
|
|
property="og:description"
|
|
content="Self-hostable dashboard using connectors to a multitude of ticketing systems"
|
|
/>
|
|
<meta property="og:image" content="%sveltekit.assets%/og.png" />
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:title" content="Omnidash - Keep your operation teams sane" />
|
|
<meta
|
|
property="twitter:description"
|
|
content="Self-hostable dashboard using connectors to a multitude of ticketing systems"
|
|
/>
|
|
<meta property="twitter:image" content="%sveltekit.assets%/og.png" />
|
|
|
|
<!-- Favicons -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="%sveltekit.assets%/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="%sveltekit.assets%/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="%sveltekit.assets%/favicon-16x16.png" />
|
|
<link rel="manifest" href="%sveltekit.assets%/site.webmanifest" />
|
|
<link rel="mask-icon" href="%sveltekit.assets%/safari-pinned-tab.svg" color="#222222" />
|
|
<link rel="shortcut icon" href="%sveltekit.assets%/favicon.ico" />
|
|
<meta name="msapplication-TileColor" content="#222222" />
|
|
<meta name="msapplication-config" content="%sveltekit.assets%/browserconfig.xml" />
|
|
<meta name="theme-color" content="#222222" />
|
|
%sveltekit.head%
|
|
|
|
<!-- Deferred scripts -->
|
|
<script
|
|
defer
|
|
data-domain="omnidash.io"
|
|
src="https://%sveltekit.env.PUBLIC_PLAUSIBLE_DOMAIN%/js/script.js"
|
|
></script>
|
|
</head>
|
|
<body
|
|
data-sveltekit-preload-data="hover"
|
|
class="min-h-screen bg-background font-sans antialiased"
|
|
>
|
|
<div style="display: contents" class="relative flex min-h-screen flex-col">
|
|
%sveltekit.body%
|
|
</div>
|
|
</body>
|
|
</html>
|