18 lines
640 B
HTML
18 lines
640 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/editor-icon.svg" />
|
|
<!-- Light mode favicon -->
|
|
<link rel="icon" href="editor-icon-light.svg" type="image/x-icon" media="(prefers-color-scheme: light)">
|
|
<!-- Dark mode favicon -->
|
|
<link rel="icon" href="editor-icon-dark.svg" type="image/x-icon" media="(prefers-color-scheme: dark)">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>JANE - Just another note editor</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|