template.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8'>
  5. <meta name='viewport' content='width=device-width,initial-scale=1.0'>
  6. <meta name='theme-color' content='#333333'>
  7. %sapper.base%
  8. <link rel='stylesheet' href='global.css'>
  9. <link rel='manifest' href='manifest.json'>
  10. <link rel='icon' type='image/png' href='favicon.png'>
  11. <!-- Sapper generates a <style> tag containing critical CSS
  12. for the current page. CSS for the rest of the app is
  13. lazily loaded when it precaches secondary pages -->
  14. %sapper.styles%
  15. <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
  16. <!-- This contains the contents of the <svelte:head> component, if
  17. the current page has one -->
  18. %sapper.head%
  19. </head>
  20. <body>
  21. <!-- The application will be rendered inside this element,
  22. because `app/client.js` references it -->
  23. <div id='sapper'>%sapper.html%</div>
  24. <!-- Sapper creates a <script> tag containing `app/client.js`
  25. and anything else it needs to hydrate the app and
  26. initialise the router -->
  27. %sapper.scripts%
  28. </body>
  29. </html>