]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/standalone/videos/embed.html
3455b4aa44d2469368573ed2714a10d9535249ab
[github/Chocobozzz/PeerTube.git] / client / src / standalone / videos / embed.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <meta name="robots" content="noindex">
7 <meta property="og:platform" content="PeerTube" />
8
9 <script type="text/javascript">
10 // Thanks: https://mathiasbynens.be/notes/globalthis
11 (function() {
12 if (typeof globalThis === 'object') return;
13 Object.prototype.__defineGetter__('__magic__', function() {
14 return this;
15 });
16 __magic__.globalThis = __magic__
17 delete Object.prototype.__magic__;
18 }());
19 </script>
20
21
22 <!-- /!\ The following comment is used by the server to prerender some tags /!\ -->
23
24 <!-- title tag -->
25 <!-- description tag -->
26 <!-- custom css tag -->
27 <!-- meta tags -->
28 <!-- server config -->
29
30 <!-- /!\ Do not remove it /!\ -->
31
32 <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
33 </head>
34
35 <body id="custom-css" class="standalone-video-embed">
36
37 <div id="error-block">
38 <h1 id="error-title"></h1>
39
40 <div id="error-content"></div>
41 </div>
42
43 <div id="video-wrapper"></div>
44
45 <div id="placeholder-preview"></div>
46
47 </body>
48 </html>