index.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ntfy.sh | Send push notifications to your phone via PUT/POST</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="%PUBLIC_URL%/static/img/favicon.png">
  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.sh" />
  20. <meta property="og:title" content="ntfy.sh | Send push notifications to your phone or desktop via PUT/POST" />
  21. <meta property="og:description" content="ntfy is a simple HTTP-based pub-sub notification service. It allows you to send desktop notifications via scripts from any computer, entirely without signup or cost. Made with ❤ by Philipp C. Heckel, Apache License 2.0, source at https://heckel.io/ntfy." />
  22. <meta property="og:image" content="/static/img/ntfy.png" />
  23. <meta property="og:url" content="https://ntfy.sh" />
  24. <!-- FIXME Never index topic page -->
  25. <!-- <meta name="robots" content="noindex, nofollow" /> -->
  26. <!-- FIXME Roboto -->
  27. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
  28. </head>
  29. <body>
  30. <noscript>You need to enable JavaScript to run this app.</noscript>
  31. <div id="root"></div>
  32. </body>
  33. </html>