noteshare.space/webapp/src/app.html

42 lines
1.1 KiB
HTML
Raw Normal View History

2022-06-22 00:30:11 +03:00
<!DOCTYPE html>
2022-06-30 01:20:46 +03:00
<html lang="en" class="h-full">
2022-06-22 00:30:11 +03:00
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
2022-07-06 16:22:59 +03:00
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📝</text></svg>"
/>
2022-06-22 00:30:11 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
<script
id="MathJax-script"
async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"
></script>
<script>
MathJax = {
tex: {
inlineMath: [
['$', '$'],
['\\(', '\\)']
]
}
};
</script>
2022-08-15 22:27:21 +03:00
<!-- Privacy-friendly analytics for the production environment of Noteshare.space.
Please remove this if you are hosting yourself! -->
<script
async
defer
data-website-id="b2982b6e-7cd3-4ffd-b698-105bb33bd811"
src="https://umami.mcndt.dev/umami.js"
data-host-url="http://umami.mcndt.dev"
></script>
2022-06-22 00:30:11 +03:00
</head>
2022-06-30 01:56:53 +03:00
<body class="h-full">
2022-06-30 01:20:46 +03:00
<div class="h-full bg-white dark:dark:bg-background-dark">%sveltekit.body%</div>
2022-06-22 00:30:11 +03:00
</body>
</html>