index.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. </head>
  39. <body>
  40. <noscript>
  41. ntfy web requires JavaScript, but you can also use the
  42. <a href="https://ntfy.sh/docs/subscribe/cli/">CLI</a> or <a href="https://ntfy.sh/docs/subscribe/phone/">Android/iOS app</a> to
  43. subscribe.
  44. </noscript>
  45. <div id="root"></div>
  46. <script src="/config.js"></script>
  47. <script type="module" src="/src/index.jsx"></script>
  48. </body>
  49. </html>