nicco.io/src/template.html

35 lines
1.1 KiB
HTML
Raw Normal View History

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