index.html 1.8 KB

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