]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/index.html
Add systemd file example
[github/Chocobozzz/PeerTube.git] / client / index.html
CommitLineData
6f4e2522
C
1<html>
2 <head>
230809ef
C
3 <base href="/">
4
dc8bc31b 5 <title>PeerTube</title>
230809ef
C
6
7 <meta charset="UTF-8">
6f4e2522 8 <meta name="viewport" content="width=device-width, initial-scale=1">
230809ef 9
41a2aee3 10 <link rel="stylesheet" href="client/stylesheets/index.css">
6f4e2522
C
11
12 <!-- 1. Load libraries -->
13 <!-- IE required polyfills, in this exact order -->
41a2aee3
C
14 <script src="client/node_modules/es6-shim/es6-shim.min.js"></script>
15 <script src="client/node_modules/zone.js/dist/zone.js"></script>
16 <script src="client/node_modules/reflect-metadata/Reflect.js"></script>
17 <script src="client/node_modules/systemjs/dist/system.src.js"></script>
230809ef 18
41a2aee3
C
19 <script src="client/node_modules/jquery/dist/jquery.js"></script>
20 <script src="client/node_modules/jquery.ui.widget/jquery.ui.widget.js"></script>
21 <script src="client/node_modules/blueimp-file-upload/js/jquery.fileupload.js"></script>
230809ef 22
41a2aee3 23 <script src="client/node_modules/webtorrent/webtorrent.min.js"></script>
6f4e2522 24
6f4e2522 25 <!-- 2. Configure SystemJS -->
41a2aee3 26 <script src="client/systemjs.config.js"></script>
6f4e2522 27 <script>
41a2aee3 28 System.import('client').catch(function(err){ console.error(err); });
6f4e2522 29 </script>
6f4e2522
C
30 </head>
31
32 <!-- 3. Display the application -->
33 <body>
34 <my-app>Loading...</my-app>
35 </body>
36</html>