28 lines
530 B
HTML
28 lines
530 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<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>
|
||
|
<body>
|
||
|
<div>%sveltekit.body%</div>
|
||
|
</body>
|
||
|
</html>
|