]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/index.html
Follow the angular styleguide for the directories structure
[github/Chocobozzz/PeerTube.git] / client / index.html
1 <html>
2 <head>
3 <base href="/">
4
5 <title>PeerTube</title>
6
7 <meta charset="UTF-8">
8 <meta name="viewport" content="width=device-width, initial-scale=1">
9
10 <link rel="stylesheet" href="client/stylesheets/index.css">
11
12 <!-- 1. Load libraries -->
13 <!-- IE required polyfills, in this exact order -->
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>
18
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>
22
23 <script src="client/node_modules/webtorrent/webtorrent.min.js"></script>
24
25 <script src="client/node_modules/ng2-bootstrap/bundles/ng2-bootstrap.min.js"></script>
26
27 <!-- 2. Configure SystemJS -->
28 <script src="client/systemjs.config.js"></script>
29 <script>
30 System.import('client').catch(function(err){ console.error(err); });
31 </script>
32 </head>
33
34 <!-- 3. Display the application -->
35 <body>
36 <my-app>Loading...</my-app>
37 </body>
38 </html>