Client: adjust viewport height
[oweals/peertube.git] / client / src / index.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <title><%= htmlWebpackPlugin.options.title %></title>
5
6     <meta charset="UTF-8">
7     <meta name="viewport" content="width=device-width, initial-scale=1">
8     <meta name="description" content="PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser" />
9
10     <!-- The following comment is used by the server to prerender OpenGraph tags -->
11     <!-- opengraph tags -->
12     <!-- Do not remove it! -->
13
14     <link rel="icon" type="image/png" href="/client/assets/favicon.png" />
15
16     <!-- TODO: bundle it with webpack when https://github.com/webpack/webpack/pull/1931 will be merged -->
17     <script src="/client/assets/webtorrent/webtorrent.min.js"></script>
18
19     <!-- base url -->
20     <base href="<%= htmlWebpackPlugin.options.metadata.baseUrl %>">
21   </head>
22
23   <!-- 3. Display the application -->
24   <body>
25
26     <my-app>
27     </my-app>
28
29   </body>
30 </html>