PeerTube/client/src/index.html

57 lines
2.4 KiB
HTML
Raw Normal View History

2016-08-09 21:45:21 +02:00
<!DOCTYPE html>
<html>
<head>
2017-12-11 17:36:46 +01:00
<title>PeerTube</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2017-03-10 10:33:36 +01:00
<meta name="description" content="PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser" />
2018-02-22 11:54:17 +01:00
<meta name="theme-color" content="#fff" />
<!-- Web Manifest file -->
2018-02-08 17:31:05 +01:00
<link rel="manifest" href="/manifest.json">
2018-02-08 10:00:09 +01:00
2017-10-16 10:05:49 +02:00
<!-- The following comment is used by the server to prerender OpenGraph and oEmbed tags -->
<!-- open graph and oembed tags -->
2016-11-11 10:55:07 +01:00
<!-- Do not remove it! -->
2017-12-05 15:01:47 +01:00
<link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
2017-06-11 12:28:22 +02:00
2016-11-04 12:50:01 +01:00
<!-- base url -->
2017-12-11 17:36:46 +01:00
<base href="/">
</head>
<!-- 3. Display the application -->
<body>
2016-11-04 12:50:01 +01:00
<noscript>
<p>You are blocking Javascript, and we totally get that. However this endpoint uses Angular, so the front end is in full JavaScript and won't work without it.
</br></br>
There will be other non JS-based clients to access PeerTube, but for now none is available as this is still alpha software. Be sure we will update this page with a list once alternative clients are developed. You can certainly develop you own in the meantime as our code is open source and libre software under GNU AGPLv3.0.
</br></br>
There might be numerous reasons you refuse to use JavaScript. If it has just to do with security (or lack thereof) of JavaScript-based webapps, then depending on your threat menace you might want to go through the code running on the node you are trying to access, and look for security audits.
</p>
</noscript>
<div id="incompatible-browser" class="alert alert-danger" style="display: none">
<p>We are sorry but it seems that PeerTube is not compatible with your web browser.</p>
<p>Please try with the latest version of <a href="https://www.mozilla.org" target="_blank">Mozilla Firefox</a>.</p>
<p>If you think this is a mistake, do not hesitate <a href="https://github.com/Chocobozzz/PeerTube/issues/new" target="_blank">to report it</a>.</p>
</div>
<script type="text/javascript">
window.onerror = function () {
var elem = document.getElementById('incompatible-browser')
if (elem.className.indexOf('browser-ok') === -1) {
elem.style.display = 'block'
}
}
</script>
2016-06-05 09:34:41 +02:00
<my-app>
</my-app>
2016-11-04 12:50:01 +01:00
</body>
</html>