19 lines
523 B
HTML
19 lines
523 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta
|
||
|
|
name="viewport"
|
||
|
|
content="width=device-width, initial-scale=1, viewport-fit=cover"
|
||
|
|
/>
|
||
|
|
<meta name="theme-color" content="#1f4b99" />
|
||
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
||
|
|
<link rel="icon" href="/icons/icon.svg" type="image/svg+xml" />
|
||
|
|
<title>Lonc</title>
|
||
|
|
</head>
|
||
|
|
<body class="bg-body-tertiary">
|
||
|
|
<div id="app"></div>
|
||
|
|
<script type="module" src="/src/main.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|