]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/index.html
Translated using Weblate (Spanish)
[github/Chocobozzz/PeerTube.git] / client / src / index.html
CommitLineData
7da18e44 1<!DOCTYPE html>
4a6995be
C
2<html>
3 <head>
4a6995be
C
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6
93df58cc 7 <meta name="theme-color" content="#fff" />
96f7fff1 8 <meta property="og:platform" content="PeerTube" />
9ccf1119 9 <!-- Web Manifest file -->
fcc7c060 10 <link rel="manifest" href="/manifest.webmanifest">
6583edee 11
6bafac54 12 <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
8635a2c7 13
4d19d2f1 14 <!-- base url -->
63c4db6d 15 <base href="/">
ffb321be
C
16
17 <!-- /!\ The following comment is used by the server to prerender some tags /!\ -->
18
19 <!-- title tag -->
20 <!-- description tag -->
21 <!-- custom css tag -->
22 <!-- meta tags -->
23
24 <!-- /!\ Do not remove it /!\ -->
4a6995be
C
25 </head>
26
27 <!-- 3. Display the application -->
d49b872a 28 <body id="custom-css">
4d19d2f1 29
f41e76cd 30 <noscript>
bc584963 31 <p>It seems you are either <strong>blocking or disabling Javascript</strong> on your browser, and we totally get that. However this endpoint uses Angular, so the front end is in full JavaScript and won't work without it.</p>
1198edf4 32
bc584963 33 <p>There might be numerous reasons you refuse to use JavaScript. If it just has to do with security (or lack thereof) of JavaScript-based web applications, 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>
1198edf4 34
bc584963 35 <p>There will be other non JS-based clients to access PeerTube, but for now none is available. Be sure we will update this page with a list once alternative clients are developed. You can certainly develop your own in the meantime as our code is open source and libre software under the <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" target="_blank" rel="noopener">GNU AGPLv3.0</a> and documented on <a href="https://docs.joinpeertube.org/api-rest-reference.html">docs.joinpeertube.org</a>.</p>
f41e76cd
RK
36 </noscript>
37
73e09f27
C
38 <div id="incompatible-browser" class="alert alert-danger" style="display: none">
39 <p>We are sorry but it seems that PeerTube is not compatible with your web browser.</p>
40 <p>Please try with the latest version of <a href="https://www.mozilla.org" target="_blank">Mozilla Firefox</a>.</p>
41 <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>
42 </div>
43
44 <script type="text/javascript">
45 window.onerror = function () {
46 var elem = document.getElementById('incompatible-browser')
47 if (elem.className.indexOf('browser-ok') === -1) {
48 elem.style.display = 'block'
49 }
50 }
51 </script>
52
5555f886
C
53 <my-app>
54 </my-app>
4d19d2f1 55
4a6995be
C
56 </body>
57</html>