index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <!-- Favicon, see favicon.io -->
  15. <link rel="icon" type="image/png" href="/static/images/favicon.ico" />
  16. <!-- Previews in Google, Slack, WhatsApp, etc. -->
  17. <meta property="og:type" content="website" />
  18. <meta property="og:locale" content="en_US" />
  19. <meta property="og:site_name" content="ntfy web" />
  20. <meta property="og:title" content="ntfy web" />
  21. <meta
  22. property="og:description"
  23. 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."
  24. />
  25. <meta property="og:image" content="/static/images/ntfy.png" />
  26. <meta property="og:url" content="https://ntfy.sh" />
  27. <!-- Never index -->
  28. <meta name="robots" content="noindex, nofollow" />
  29. <!-- Style overrides & fonts -->
  30. <link rel="stylesheet" href="/static/css/app.css" type="text/css" />
  31. <link rel="stylesheet" href="/static/css/fonts.css" type="text/css" />
  32. </head>
  33. <body>
  34. <noscript>
  35. ntfy web requires JavaScript, but you can also use the
  36. <a href="https://ntfy.sh/docs/subscribe/cli/">CLI</a> or <a href="https://ntfy.sh/docs/subscribe/phone/">Android/iOS app</a> to
  37. subscribe.
  38. </noscript>
  39. <div id="root"></div>
  40. <script src="/config.js"></script>
  41. <script type="module" src="/src/index.jsx"></script>
  42. </body>
  43. </html>