2021-01-09 09:06:37 +00:00
|
|
|
<!DOCTYPE html>
|
2020-10-21 23:03:33 +01:00
|
|
|
<html lang="en">
|
2021-01-09 09:06:37 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
|
|
<meta name="theme-color" content="#333333" />
|
|
|
|
<meta property="og:title" content="Paimon.moe" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:url" content="https://paimon.moe" />
|
|
|
|
<meta property="og:image" content="https://paimon.moe/paimon-og.png" />
|
2020-10-21 23:03:33 +01:00
|
|
|
|
2021-01-09 09:06:37 +00:00
|
|
|
%sapper.base%
|
|
|
|
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Catamaran:wght@600;700;900&family=Poppins:wght@400;500;600&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
<link rel="manifest" href="manifest.json" crossorigin="use-credentials" />
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
|
|
|
2021-04-10 18:13:25 +01:00
|
|
|
<!-- <script src="https://js.sentry-cdn.com/446c4cef71a54aafb71b698555500b7d.min.js" crossorigin="anonymous"></script> -->
|
2021-02-08 00:46:09 +00:00
|
|
|
<script async defer data-domain="paimon.moe" src="https://plausible.paimon.moe/js/plausible.js"></script>
|
|
|
|
|
2021-04-04 17:49:18 +01:00
|
|
|
<script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-app.js"></script>
|
|
|
|
<script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-messaging.js"></script>
|
|
|
|
|
2021-01-09 09:06:37 +00:00
|
|
|
<style>
|
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
background: #25294a;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<!-- Sapper creates a <script> tag containing `src/client.js`
|
2020-10-21 23:03:33 +01:00
|
|
|
and anything else it needs to hydrate the app and
|
|
|
|
initialise the router -->
|
2021-01-09 09:06:37 +00:00
|
|
|
%sapper.scripts%
|
2020-10-21 23:03:33 +01:00
|
|
|
|
2021-01-09 09:06:37 +00:00
|
|
|
<!-- Sapper generates a <style> tag containing critical CSS
|
2020-10-21 23:03:33 +01:00
|
|
|
for the current page. CSS for the rest of the app is
|
|
|
|
lazily loaded when it precaches secondary pages -->
|
2021-01-09 09:06:37 +00:00
|
|
|
%sapper.styles%
|
2020-10-21 23:03:33 +01:00
|
|
|
|
2021-01-09 09:06:37 +00:00
|
|
|
<!-- This contains the contents of the <svelte:head> component, if
|
2020-10-21 23:03:33 +01:00
|
|
|
the current page has one -->
|
2021-01-09 09:06:37 +00:00
|
|
|
%sapper.head%
|
|
|
|
</head>
|
|
|
|
<body class="font-body h-full bg-background-secondary">
|
|
|
|
<!-- The application will be rendered inside this element,
|
2020-10-21 23:03:33 +01:00
|
|
|
because `src/client.js` references it -->
|
2021-01-09 09:06:37 +00:00
|
|
|
<div id="sapper" class="flex flex-col h-full">%sapper.html%</div>
|
|
|
|
</body>
|
2020-10-21 23:03:33 +01:00
|
|
|
</html>
|