2022-02-18 15:49:51 +01:00
<!DOCTYPE html>
< html lang = "en" >
2022-02-24 18:26:07 +01:00
< head >
< meta charset = "UTF-8" / >
2022-02-28 22:56:38 +01:00
< title > ntfy web< / title >
2022-02-24 18:26:07 +01:00
<!-- Mobile view -->
< meta name = "viewport" content = "width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" / >
< meta name = "HandheldFriendly" content = "true" / >
<!-- Mobile browsers, background color -->
< meta name = "theme-color" content = "#317f6f" / >
< meta name = "msapplication-navbutton-color" content = "#317f6f" / >
< meta name = "apple-mobile-web-app-status-bar-style" content = "#317f6f" / >
2023-05-24 21:36:01 +02:00
< link rel = "apple-touch-icon" href = "/static/images/apple-touch-icon.png" sizes = "180x180" / >
< link rel = "mask-icon" href = "/static/images/mask-icon.svg" color = "#317f6f" / >
2022-02-24 18:26:07 +01:00
<!-- Favicon, see favicon.io -->
2023-05-24 12:24:34 +02:00
< link rel = "icon" type = "image/png" href = "/static/images/favicon.ico" / >
2022-02-24 18:26:07 +01:00
<!-- Previews in Google, Slack, WhatsApp, etc. -->
2023-05-24 21:36:01 +02:00
< meta
name="description"
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."
/>
2022-02-24 18:26:07 +01:00
< meta property = "og:type" content = "website" / >
< meta property = "og:locale" content = "en_US" / >
2022-03-06 02:24:10 +01:00
< meta property = "og:site_name" content = "ntfy web" / >
2022-03-10 05:28:55 +01:00
< meta property = "og:title" content = "ntfy web" / >
2023-04-28 15:04:07 +02:00
< meta
property="og:description"
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."
/>
2023-05-24 12:24:34 +02:00
< meta property = "og:image" content = "/static/images/ntfy.png" / >
2022-02-24 18:26:07 +01:00
< meta property = "og:url" content = "https://ntfy.sh" / >
2022-03-05 14:52:52 +01:00
<!-- Never index -->
< meta name = "robots" content = "noindex, nofollow" / >
2023-01-21 14:55:31 +01:00
<!-- Style overrides & fonts -->
2023-05-24 12:24:34 +02:00
< link rel = "stylesheet" href = "/static/css/app.css" type = "text/css" / >
< link rel = "stylesheet" href = "/static/css/fonts.css" type = "text/css" / >
2023-06-19 20:41:41 +02:00
<!-- PWA -->
< link rel = "manifest" href = "/manifest.webmanifest" / >
2022-02-24 18:26:07 +01:00
< / head >
< body >
2022-03-10 05:28:55 +01:00
< noscript >
2022-03-11 21:17:12 +01:00
ntfy web requires JavaScript, but you can also use the
2022-03-10 05:28:55 +01:00
< a href = "https://ntfy.sh/docs/subscribe/cli/" > CLI< / a > or < a href = "https://ntfy.sh/docs/subscribe/phone/" > Android/iOS app< / a > to
subscribe.
< / noscript >
2022-02-24 18:26:07 +01:00
< div id = "root" > < / div >
2023-05-24 12:24:34 +02:00
< script src = "/config.js" > < / script >
< script type = "module" src = "/src/index.jsx" > < / script >
2022-02-24 18:26:07 +01:00
< / body >
2022-02-18 15:49:51 +01:00
< / html >