1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-28 03:21:58 +02:00
ntfy/web/public/index.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
2 KiB
HTML
Raw Normal View History

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" />
<!-- Favicon, see favicon.io -->
2023-05-01 17:58:49 +02:00
<link
rel="icon"
type="image/png"
href="%PUBLIC_URL%/static/images/favicon.ico"
/>
2022-02-24 18:26:07 +01:00
<!-- Previews in Google, Slack, WhatsApp, etc. -->
<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" />
<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-01 17:58:49 +02:00
<meta property="og:image" content="%PUBLIC_URL%/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 -->
<link
rel="stylesheet"
href="%PUBLIC_URL%/static/css/app.css"
type="text/css"
/>
<link
rel="stylesheet"
href="%PUBLIC_URL%/static/css/fonts.css"
2023-01-21 14:55:31 +01:00
type="text/css"
2023-05-23 21:13:01 +02:00
/>
2022-02-24 18:26:07 +01:00
</head>
<body>
<noscript>
2022-03-11 21:17:12 +01:00
ntfy web requires JavaScript, but you can also use the
<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>
<script src="%PUBLIC_URL%/config.js"></script>
2022-02-24 18:26:07 +01:00
</body>
2022-02-18 15:49:51 +01:00
</html>