2016-01-04 06:20:11 +00:00
|
|
|
doctype html
|
2016-03-11 07:57:25 +00:00
|
|
|
html(ng-app="BTorrent" lang="en")
|
2016-02-16 17:06:08 +00:00
|
|
|
head
|
2016-03-11 07:57:25 +00:00
|
|
|
base(href="")
|
|
|
|
meta(charset="UTF-8")
|
2016-02-16 17:06:08 +00:00
|
|
|
title βTorrent: Browser WebTorrent Client
|
2016-03-11 07:57:25 +00:00
|
|
|
meta(name="description" content="βTorrent is the first fully-featured Browser WebTorrent Client")
|
|
|
|
meta(name="keywords" content="βTorrent, btorrent, client, webtorrent, browser, torrent, stream, bittorrent, torrenting, sharing, filesharing")
|
|
|
|
meta(name="author" content="Diego Rodríguez Baquero - DiegoRBaquero")
|
|
|
|
meta(name="viewport" content="width=device-width, initial-scale=1")
|
|
|
|
script(src="https://cdn.jsdelivr.net/g/webtorrent@0,momentjs@2,angularjs@1.4(angular.min.js+angular-route.min.js+angular-sanitize.min.js),angular.ui-grid@3.1,angular.ng-notify@0.7,angular.file-upload@12")
|
|
|
|
link(rel="stylesheet" href="https://cdn.jsdelivr.net/g/normalize@3.0,skeleton@2.0,angular.ng-notify@0.7(ng-notify.min.css)")
|
|
|
|
link(rel="stylesheet" href="https://cdn.jsdelivr.net/fontawesome/4.5/css/font-awesome.min.css")
|
|
|
|
link(rel="stylesheet" href="https://cdn.jsdelivr.net/angular.ui-grid/3.1/ui-grid.min.css")
|
|
|
|
link(rel="stylesheet" href="style.css")
|
|
|
|
body(ng-controller="BTorrentCtrl" ng-cloak="")
|
2016-02-16 17:06:08 +00:00
|
|
|
header
|
|
|
|
h1
|
|
|
|
| βTorrent
|
2016-03-12 07:53:05 +00:00
|
|
|
span.version v{{$root.version}}
|
2016-03-11 07:57:25 +00:00
|
|
|
div.views(ng-show="$root.client.torrents.length == 0")
|
|
|
|
a(ng-href="/#") Full
|
2016-02-16 17:06:08 +00:00
|
|
|
| |
|
2016-03-11 07:57:25 +00:00
|
|
|
a(ng-href="/download") Single Download
|
2016-02-28 05:47:19 +00:00
|
|
|
| |
|
2016-03-11 07:57:25 +00:00
|
|
|
a(ng-href="/view") Stream / View
|
2016-02-28 05:59:02 +00:00
|
|
|
#viewer(ng-style="$root.viewerStyle")
|
2016-02-16 17:06:08 +00:00
|
|
|
#view(ng-view)
|
|
|
|
footer
|
2016-03-11 07:57:25 +00:00
|
|
|
a.button(href="https://github.com/DiegoRBaquero/BTorrent/issues" target="_blank")
|
2016-02-16 17:06:08 +00:00
|
|
|
i.fa.fa-github
|
|
|
|
| Suggest a feature / Report a bug
|
|
|
|
i.fa.fa-comment
|
|
|
|
br
|
2016-03-11 07:57:25 +00:00
|
|
|
b βTorrent is an Open-Source project by
|
|
|
|
a(href="http://diegorbaquero.com" target="_blank") DiegoRBaquero
|
|
|
|
br
|
|
|
|
b
|
|
|
|
a(href="https://tracker.btorrent.xyz/stats" target="_blank") βTorrent's Tracker Stats
|
2016-02-16 17:06:08 +00:00
|
|
|
br
|
|
|
|
| Powered by
|
2016-03-11 07:57:25 +00:00
|
|
|
a(href="https://github.com/feross/webtorrent" target="_blank") WebTorrent
|
2016-02-16 17:06:08 +00:00
|
|
|
br
|
2016-03-11 00:38:09 +00:00
|
|
|
small Hosted by
|
2016-03-11 07:57:25 +00:00
|
|
|
a(href="https://m.do.co/c/0b25a910e6e4" target="_blank") Digital Ocean
|
2016-03-11 00:58:40 +00:00
|
|
|
| |
|
2016-03-11 07:57:25 +00:00
|
|
|
a(href="http://www.vultr.com/?ref=6823526" target="_blank") Vultr
|
2016-03-11 01:04:54 +00:00
|
|
|
| |
|
2016-03-11 07:57:25 +00:00
|
|
|
a(href="https://www.linode.com/?r=6d9b41c957019d7fe6d54d159635e5475048e319" target="_blank") Linode
|
2016-02-16 17:06:08 +00:00
|
|
|
.spinner(ng-show="client.processing")
|
|
|
|
i.fa.fa-spinner.fa-spin.spinner-icon
|
2016-03-11 07:57:25 +00:00
|
|
|
script(src="app.js")
|