index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link href="/favicon.ico" rel="icon">
  6. <link href="/favicon-32x32.png" rel="icon" type="image/png" sizes="32x32">
  7. <meta content="width=device-width,initial-scale=1.0,user-scalable=0" name="viewport">
  8. <!-- PWA Manifest -->
  9. <link rel="manifest" href="/manifest.json">
  10. <!-- PWA Meta Tags -->
  11. <meta name="theme-color" content="#ffffff">
  12. <meta name="apple-mobile-web-app-capable" content="yes">
  13. <meta name="apple-mobile-web-app-status-bar-style" content="default">
  14. <meta name="apple-mobile-web-app-title" content="Nginx UI">
  15. <meta name="mobile-web-app-capable" content="yes">
  16. <meta name="msapplication-TileColor" content="#ffffff">
  17. <meta name="msapplication-config" content="/browserconfig.xml">
  18. <!-- Apple Touch Icons -->
  19. <link rel="apple-touch-icon" sizes="192x192" href="/pwa-192x192.png">
  20. <link rel="apple-touch-icon" sizes="512x512" href="/pwa-512x512.png">
  21. <style>
  22. body {
  23. height: auto !important;
  24. min-height: 100%;
  25. }
  26. body.dark {
  27. background-color: #141414;
  28. color: #fff;
  29. }
  30. #app {
  31. height: 100vh;
  32. }
  33. </style>
  34. <title>Nginx UI</title>
  35. </head>
  36. <body>
  37. <div id="app"></div>
  38. <script type="module" src="/src/main.ts"></script>
  39. </body>
  40. </html>