2020-07-24 09:10:01 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2020-07-27 10:53:55 +00:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0,viewport-fit=cover" />
|
2020-07-24 09:10:01 +00:00
|
|
|
<meta name="theme-color" content="#333333" />
|
2020-07-23 18:30:57 +00:00
|
|
|
|
2020-07-24 09:10:01 +00:00
|
|
|
%sapper.base%
|
2020-07-23 18:30:57 +00:00
|
|
|
|
2020-07-24 09:10:01 +00:00
|
|
|
<link rel="stylesheet" href="global.css" />
|
|
|
|
<link rel="icon" type="image/png" href="/images/monogramm.png" />
|
2020-07-23 18:30:57 +00:00
|
|
|
|
2020-07-24 09:10:01 +00:00
|
|
|
<!-- Sapper generates a <style> tag containing critical CSS
|
2020-07-23 18:30:57 +00:00
|
|
|
for the current page. CSS for the rest of the app is
|
|
|
|
lazily loaded when it precaches secondary pages -->
|
2020-07-24 09:10:01 +00:00
|
|
|
%sapper.styles%
|
2020-07-23 18:30:57 +00:00
|
|
|
|
2020-07-24 09:10:01 +00:00
|
|
|
<!-- This contains the contents of the <svelte:head> component, if
|
2020-07-23 18:30:57 +00:00
|
|
|
the current page has one -->
|
2020-07-24 09:10:01 +00:00
|
|
|
%sapper.head%
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- The application will be rendered inside this element,
|
2020-09-22 19:47:33 +00:00
|
|
|
because `src/client.js` references it -->
|
2020-07-24 09:10:01 +00:00
|
|
|
<div id="sapper">%sapper.html%</div>
|
2020-07-23 18:30:57 +00:00
|
|
|
|
2020-07-24 09:10:01 +00:00
|
|
|
<!-- Sapper creates a <script> tag containing `src/client.js`
|
2020-09-22 19:47:33 +00:00
|
|
|
and anything else it needs to hydrate the app and
|
|
|
|
initialise the router -->
|
2020-07-24 09:10:01 +00:00
|
|
|
%sapper.scripts%
|
|
|
|
|
2020-09-25 21:42:22 +00:00
|
|
|
<script type="module" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.esm.js"></script>
|
|
|
|
<script nomodule="" src="https://unpkg.com/ionicons@5.1.2/dist/ionicons/ionicons.js"></script>
|
2020-07-24 09:10:01 +00:00
|
|
|
</body>
|
2020-07-23 18:30:57 +00:00
|
|
|
</html>
|