]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/index.html
Fix wait transcoding checkbox display
[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 -->
caf2aaf4 10 <link rel="manifest" href="/manifest.webmanifest?[manifestContentHash]">
6583edee 11
caf2aaf4 12 <link rel="icon" type="image/png" href="/client/assets/images/favicon.png?[faviconContentHash]" />
0450fa8e 13 <link rel="apple-touch-icon" href="/client/assets/images/icons/icon-144x144.png" sizes="144x144" />
14 <link rel="apple-touch-icon" href="/client/assets/images/icons/icon-192x192.png" sizes="192x192" />
caf2aaf4
K
15
16 <!-- logo background-image -->
17 <style type="text/css">
18 .icon-logo {
19 background-image: url(/client/assets/images/logo.svg?[logoContentHash]);
20 }
21 </style>
8635a2c7 22
4d19d2f1 23 <!-- base url -->
63c4db6d 24 <base href="/">
ffb321be
C
25
26 <!-- /!\ The following comment is used by the server to prerender some tags /!\ -->
27
28 <!-- title tag -->
29 <!-- description tag -->
30 <!-- custom css tag -->
31 <!-- meta tags -->
32
33 <!-- /!\ Do not remove it /!\ -->
4a6995be
C
34 </head>
35
36 <!-- 3. Display the application -->
d49b872a 37 <body id="custom-css">
4d19d2f1 38
f41e76cd 39 <noscript>
bc584963 40 <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 41
bc584963 42 <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 43
9770baee 44 <p>There are other non JS-based unofficial clients to access PeerTube. You can find a list maintained by the PeerTube project in <a href="https://framagit.org/framasoft/peertube/documentation/-/raw/master/use-third-party-application.md">the thid-party applications section</a>. You can also develop your own 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
45 </noscript>
46
73e09f27
C
47 <div id="incompatible-browser" class="alert alert-danger" style="display: none">
48 <p>We are sorry but it seems that PeerTube is not compatible with your web browser.</p>
49 <p>Please try with the latest version of <a href="https://www.mozilla.org" target="_blank">Mozilla Firefox</a>.</p>
50 <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>
51 </div>
52
53 <script type="text/javascript">
6c733e46 54 function displayIncompatibleBrowser () {
73e09f27
C
55 var elem = document.getElementById('incompatible-browser')
56 if (elem.className.indexOf('browser-ok') === -1) {
57 elem.style.display = 'block'
58 }
59 }
6c733e46
C
60
61 window.onerror = function () {
62 displayIncompatibleBrowser()
63 }
64
65 if (/MSIE|Trident/.test(window.navigator.userAgent) ) {
66 displayIncompatibleBrowser()
67 }
73e09f27
C
68 </script>
69
1916c966 70 <my-app role="main">
5555f886 71 </my-app>
4d19d2f1 72
4a6995be
C
73 </body>
74</html>