template.html 903 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0" />
  6. %sapper.base%
  7. <link rel="manifest" href="manifest.json" />
  8. <meta name="theme-color" content="#0096D1">
  9. <link rel="icon" type="image/png" href="favicon.png" />
  10. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180.png">
  11. <link rel="stylesheet" href="/main.css" />
  12. <link rel="stylesheet" href="/normalize.css" />
  13. <!-- Sapper generates a <style> tag containing critical CSS
  14. for the current page. CSS for the rest of the app is
  15. lazily loaded when it precaches secondary pages -->
  16. %sapper.styles%
  17. <!-- This contains the contents of the <svelte:head> component, if
  18. the current page has one -->
  19. %sapper.head%
  20. </head>
  21. <body>
  22. <div id="sapper">
  23. %sapper.html%
  24. </div>
  25. %sapper.scripts%
  26. </body>
  27. </html>