The namegen5 website.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.0 KiB

3 years ago
  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. <meta name="theme-color" content="#333333">
  7. %sapper.base%
  8. <link rel="stylesheet" href="global.css">
  9. <link rel="manifest" href="manifest.json" crossorigin="use-credentials">
  10. <link rel="icon" type="image/png" href="favicon.png">
  11. <!-- Sapper creates a <script> tag containing `src/client.js`
  12. and anything else it needs to hydrate the app and
  13. initialise the router -->
  14. %sapper.scripts%
  15. <!-- Sapper generates a <style> tag containing critical CSS
  16. for the current page. CSS for the rest of the app is
  17. lazily loaded when it precaches secondary pages -->
  18. %sapper.styles%
  19. <!-- This contains the contents of the <svelte:head> component, if
  20. the current page has one -->
  21. %sapper.head%
  22. </head>
  23. <body>
  24. <!-- The application will be rendered inside this element,
  25. because `src/client.js` references it -->
  26. <div id="sapper">%sapper.html%</div>
  27. </body>
  28. </html>