noteshare.space/webapp/src/app.html

28 lines
613 B
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" />
<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>
</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>