btorrent/200.jade

48 lines
2.5 KiB
Text
Raw Normal View History

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")
2016-04-05 07:12:15 +00:00
script(src="https://cdn.jsdelivr.net/g/webtorrent@0.90,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")
2016-03-11 07:57:25 +00:00
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
2016-04-05 07:12:15 +00:00
a(href="https://diegorbaquero.com" target="_blank") DiegoRBaquero
2016-03-11 07:57:25 +00:00
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-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")