mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-08-08 19:49:13 +00:00
33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0d0d0d" />
|
|
<meta name="msapplication-config" content="/assets/favicon/browserconfig.xml" />
|
|
<meta name="msapplication-TileColor" content="#f0941d" />
|
|
|
|
<link rel="icon" type="image/x-icon" href="/assets/favicon/favicon.ico" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png" />
|
|
<link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#f0941d" />
|
|
<link rel="manifest" href="/assets/favicon/site.webmanifest" />
|
|
|
|
<title>Lapikud</title>
|
|
<script>
|
|
(function () {
|
|
var redirect = sessionStorage.redirect;
|
|
delete sessionStorage.redirect;
|
|
if (redirect && redirect !== location.href) {
|
|
history.replaceState(null, null, redirect);
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|