2018-01-06 23:51:25 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
|
|
|
<meta name='viewport' content='width=device-width'>
|
2018-01-07 23:11:17 +00:00
|
|
|
<meta name='theme-color' content='#4169e1'>
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
<link rel='stylesheet' href='/global.css'>
|
|
|
|
<link rel='manifest' href='/manifest.json'>
|
|
|
|
<link rel='icon' type='image/png' href='/favicon.png'>
|
|
|
|
|
|
|
|
<script>
|
2018-01-08 06:38:41 +00:00
|
|
|
if (!location.origin.match('localhost') && 'serviceWorker' in navigator) {
|
2018-01-06 23:51:25 +00:00
|
|
|
navigator.serviceWorker.register('/service-worker.js');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- 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 <:Head> component, if
|
|
|
|
the current page has one -->
|
|
|
|
%sapper.head%
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- The application will be rendered inside this element,
|
|
|
|
because `templates/main.js` references it -->
|
|
|
|
<div id='sapper'>%sapper.html%</div>
|
|
|
|
|
|
|
|
<!-- Sapper creates a <script> tag containing `templates/main.js`
|
|
|
|
and anything else it needs to hydrate the app and
|
|
|
|
initialise the router -->
|
|
|
|
<script src='%sapper.main%'></script>
|
2018-01-08 00:00:42 +00:00
|
|
|
<!-- Icon thanks to sailboat by Gregor Cresnar from the Noun Project -->
|
2018-01-06 23:51:25 +00:00
|
|
|
</body>
|
|
|
|
</html>
|