template.html 805 B

1234567891011121314151617181920212223242526272829303132
  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. <!-- 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. <!-- This contains the contents of the <svelte:head> component, if
  16. the current page has one -->
  17. %sapper.head%
  18. </head>
  19. <body>
  20. <div id="sapper">
  21. %sapper.html%
  22. </div>
  23. %sapper.scripts%
  24. </body>
  25. </html>