]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/index.html
BEARKING CHANGE: Update videos API response
[github/Chocobozzz/PeerTube.git] / client / src / index.html
CommitLineData
7da18e44 1<!DOCTYPE html>
4a6995be
C
2<html>
3 <head>
63c4db6d 4 <title>PeerTube</title>
4a6995be
C
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
758b996d 8 <meta name="description" content="PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser" />
4a6995be 9
93df58cc
C
10 <meta name="theme-color" content="#fff" />
11
9ccf1119 12 <!-- Web Manifest file -->
7193ad10 13 <link rel="manifest" href="/manifest.json">
6583edee 14
d8755eed
C
15 <!-- The following comment is used by the server to prerender OpenGraph and oEmbed tags -->
16 <!-- open graph and oembed tags -->
830bcd0f
C
17 <!-- Do not remove it! -->
18
6bafac54 19 <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
8635a2c7 20
4d19d2f1 21 <!-- base url -->
63c4db6d 22 <base href="/">
4a6995be
C
23 </head>
24
25 <!-- 3. Display the application -->
26 <body>
4d19d2f1 27
f41e76cd
RK
28 <noscript>
29 <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.
30 </br></br>
2bb0f9d5 31 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.
f41e76cd
RK
32 </br></br>
33 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.
34 </p>
35 </noscript>
36
73e09f27
C
37 <div id="incompatible-browser" class="alert alert-danger" style="display: none">
38 <p>We are sorry but it seems that PeerTube is not compatible with your web browser.</p>
39 <p>Please try with the latest version of <a href="https://www.mozilla.org" target="_blank">Mozilla Firefox</a>.</p>
40 <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>
41 </div>
42
43 <script type="text/javascript">
44 window.onerror = function () {
45 var elem = document.getElementById('incompatible-browser')
46 if (elem.className.indexOf('browser-ok') === -1) {
47 elem.style.display = 'block'
48 }
49 }
50 </script>
51
5555f886
C
52 <my-app>
53 </my-app>
4d19d2f1 54
4a6995be
C
55 </body>
56</html>