mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2025-09-08 06:58:43 +00:00
68 lines
2.2 KiB
HTML
68 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="BTorrent" lang="en">
|
|
<head>
|
|
<base href="./" />
|
|
<meta charset="UTF-8" />
|
|
<title>bitvid βeacon | A Browser Based WebTorrent Client</title>
|
|
<meta
|
|
name="description"
|
|
content="bitvid βeacon uses code from βTorrent. βTorrent is a fully-featured Browser WebTorrent Client"
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="bitvid, client, webtorrent, browser, torrent, stream, bittorrent, torrenting, sharing, filesharing"
|
|
/>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
|
|
<!-- Scripts: webtorrent, angular, etc. -->
|
|
<script src="bundle.min.js"></script>
|
|
<!--<script src="https://cdn.jsdelivr.net/combine/npm/webtorrent/webtorrent.min.js,npm/moment@2,npm/angular@1.5/angular.min.js,npm/angular-route@1.5/angular-route.min.js,npm/angular-sanitize@1.5/angular-sanitize.min.js,npm/angular-ui-grid@3/ui-grid.min.js,gh/matowens/ng-notify/dist/ng-notify.min.js,npm/ng-file-upload@12.2.13/dist/ng-file-upload.min.js"></script>-->
|
|
|
|
<!-- External styles -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/g/normalize@3,skeleton@2,angular.ng-notify@0.8(ng-notify.min.css)"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/fontawesome/4/css/font-awesome.min.css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/angular.ui-grid/3/ui-grid.min.css"
|
|
/>
|
|
|
|
<!-- Local CSS -->
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
|
|
<body ng-controller="BTorrentCtrl" ng-cloak="">
|
|
<!-- Header with container -->
|
|
<header class="header-torrent">
|
|
<div class="container">
|
|
<div class="logo-container">
|
|
<img
|
|
src="../assets/svg/bitvid-logo-light-mode.svg"
|
|
alt="bitvid Logo"
|
|
class="bitvid-logo"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main content -->
|
|
<div id="viewer" ng-style="$root.viewerStyle"></div>
|
|
<div id="view" ng-view></div>
|
|
|
|
<!-- Processing Spinner -->
|
|
<div class="spinner" ng-show="client.processing">
|
|
<i class="fa fa-spinner fa-spin spinner-icon"></i>
|
|
</div>
|
|
|
|
<!-- Local Angular code -->
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|