index.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>ntfy web</title>
  6. <!-- Mobile view -->
  7. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  9. <meta name="HandheldFriendly" content="true" />
  10. <!-- Mobile browsers, background color -->
  11. <meta name="theme-color" content="#317f6f" />
  12. <meta name="msapplication-navbutton-color" content="#317f6f" />
  13. <meta name="apple-mobile-web-app-status-bar-style" content="#317f6f" />
  14. <link rel="apple-touch-icon" href="/static/images/apple-touch-icon.png" sizes="180x180" />
  15. <link rel="mask-icon" href="/static/images/mask-icon.svg" color="#317f6f" />
  16. <!-- Favicon, see favicon.io -->
  17. <link rel="icon" type="image/png" href="/static/images/favicon.ico" />
  18. <!-- Previews in Google, Slack, WhatsApp, etc. -->
  19. <meta
  20. name="description"
  21. content="ntfy lets you send push notifications via scripts from any computer or phone. Made with ❤ by Philipp C. Heckel, Apache License 2.0, source at https://heckel.io/ntfy."
  22. />
  23. <meta property="og:type" content="website" />
  24. <meta property="og:locale" content="en_US" />
  25. <meta property="og:site_name" content="ntfy web" />
  26. <meta property="og:title" content="ntfy web" />
  27. <meta
  28. property="og:description"
  29. content="ntfy lets you send push notifications via scripts from any computer or phone. Made with ❤ by Philipp C. Heckel, Apache License 2.0, source at https://heckel.io/ntfy."
  30. />
  31. <meta property="og:image" content="/static/images/ntfy.png" />
  32. <meta property="og:url" content="https://ntfy.sh" />
  33. <!-- Never index -->
  34. <meta name="robots" content="noindex, nofollow" />
  35. <!-- Style overrides & fonts -->
  36. <link rel="stylesheet" href="/static/css/app.css" type="text/css" />
  37. <link rel="stylesheet" href="/static/css/fonts.css" type="text/css" />
  38. <!-- PWA -->
  39. <link rel="manifest" href="/manifest.webmanifest" />
  40. </head>
  41. <body>
  42. <noscript>
  43. ntfy web requires JavaScript, but you can also use the
  44. <a href="https://ntfy.sh/docs/subscribe/cli/">CLI</a> or <a href="https://ntfy.sh/docs/subscribe/phone/">Android/iOS app</a> to
  45. subscribe.
  46. </noscript>
  47. <div id="root"></div>
  48. <script src="/config.js"></script>
  49. <script type="module" src="/src/index.jsx"></script>
  50. </body>
  51. </html>