2019-07-12 09:49:03 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
|
|
|
<meta name='viewport' content='width=device-width,initial-scale=1.0'>
|
|
|
|
<meta name='theme-color' content='#333333'>
|
|
|
|
|
|
|
|
%sapper.base%
|
|
|
|
|
|
|
|
<link rel='stylesheet' href='global.css'>
|
2019-09-15 22:48:03 +02:00
|
|
|
<link rel="stylesheet" href="print.css" media="print">
|
|
|
|
<link rel="stylesheet" href="fonts.css">
|
|
|
|
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i&display=swap&subset=latin-ext" rel="stylesheet"> -->
|
2019-07-12 09:49:03 +02:00
|
|
|
<link rel='manifest' href='manifest.json'>
|
|
|
|
<link rel='icon' type='image/png' href='favicon.png'>
|
|
|
|
|
|
|
|
<!-- Sapper generates a <style> tag containing critical CSS
|
|
|
|
for the current page. CSS for the rest of the app is
|
|
|
|
lazily loaded when it precaches secondary pages -->
|
|
|
|
%sapper.styles%
|
|
|
|
|
|
|
|
<!-- This contains the contents of the <svelte:head> component, if
|
|
|
|
the current page has one -->
|
|
|
|
%sapper.head%
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- The application will be rendered inside this element,
|
|
|
|
because `app/client.js` references it -->
|
|
|
|
<div id='sapper'>%sapper.html%</div>
|
|
|
|
|
|
|
|
<!-- Sapper creates a <script> tag containing `app/client.js`
|
|
|
|
and anything else it needs to hydrate the app and
|
|
|
|
initialise the router -->
|
|
|
|
%sapper.scripts%
|
|
|
|
</body>
|
|
|
|
</html>
|