template.html 677 B

123456789101112131415161718192021222324252627282930
  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. <meta name="theme-color" content="#0a0d13">
  8. <link rel="icon" type="image/png" href="favicon.png" />
  9. <!-- Sapper generates a <style> tag containing critical CSS
  10. for the current page. CSS for the rest of the app is
  11. lazily loaded when it precaches secondary pages -->
  12. %sapper.styles%
  13. <!-- This contains the contents of the <svelte:head> component, if
  14. the current page has one -->
  15. %sapper.head%
  16. </head>
  17. <body>
  18. <div id="sapper">
  19. %sapper.html%
  20. </div>
  21. %sapper.scripts%
  22. </body>
  23. </html>