-
Notifications
You must be signed in to change notification settings - Fork 8
/
about.html
94 lines (81 loc) · 4.71 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/base.css" rel="stylesheet">
<link href="css/offcanvas.css" rel="stylesheet">
</head>
<body>
<div id="titlebar"></div>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<a href="index.html">
<svg class="masthead-brand" height="64" width="64" viewBox="0 0 114 114" version="1.1">
<rect stroke-dashoffset="0" height="110" width="110" stroke="#3d3d62" stroke-dasharray="none" stroke-miterlimit="4" y="2" x="2" stroke-width="4" fill="none"/>
<path stroke-linejoin="miter" d="m12,12,0,80,10,0,0,10,10,0,10-10,0-20,20,0,10-10,0-10-30,0,0-20,60,0,0-20z" stroke="#3d3d62" stroke-linecap="butt" stroke-miterlimit="4" stroke-dasharray="none" stroke-width="2" fill="none"/>
<path fill="#3d3d62" d="m12,12,0,70,10,0,0,10,20,0,0-20,20,0,10-10,0-10-30,0,0-20,60,0,0-20z"/>
</svg>
</a>
<ul class="nav masthead-nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="http://blog.fastcast.nz">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row row-offcanvas row-offcanvas-right">
<div class="col-xs-12 col-sm-9">
<p class="pull-right visible-xs">
<button type="button" class="btn btn-primary btn-xs" data-toggle="offcanvas">Toggle sidebar</button>
</p>
<div class="jumbotron">
<h1>About</h1>
<p>Imagine if sharing video and audio content on the web had no boundaries and all we needed were each other. Fastcast aims to make peer-to-peer file sharing easy to use and leave the rest to the community. There are no limits, other than the creativity of the individuals.</p>
<p>Fastcast is powered by WebTorrent; a streaming torrent client for the browser. WebTorrent is written entirely in JavaScript, the language of the web, so you don't need to install any plugins. BitTorrent clients that support WebRTC, will be able to connect to the peer-to-peer network. This means you will be able to download files from a desktop client as well.</p>
<p>Support Fastcast:</p>
<p><a href="seed.html">Become a seeder!</a></p>
<p>Donate bitcoin <a href="bitcoin:1A7X2Gz7iLrw6W1HWd3j4aMU5DSYCszCnQ">1MCAxUh9jZa7ztMqLpx9mgDadg5DnBg47m</a>. (<a href="https://keybase.io/codex">proof</a>)</p>
</div>
</div><!--/.col-xs-12.col-sm-9-->
<div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar" role="navigation">
<p><b>Links</b></p>
<div class="list-group">
<a href="http://help.bittorrent.com/customer/portal/articles/164636-what-is-the-bittorrent-protocol-" class="list-group-item">What is the BitTorrent Protocol?</a>
<a href="http://wiki.vuze.com/w/Legal_torrent_sites" class="list-group-item">Legal torrent sites</a>
<a href="http://webtorrent.io" class="list-group-item">WebTorrent</a>
<a href="https://www.archive.org" class="list-group-item">Internet Archive</a>
</div>
<a class="twitter-timeline" href="https://twitter.com/fastcastnz" data-widget-id="468623837718790144">Tweets by @fastcastnz</a>
</div><!--/.sidebar-offcanvas-->
</div><!--/row-->
</div><!--/.container-->
<footer class="footer">
<div class="container">
<p class="text-muted">2014 Fastcast. Powered by <a href="http://webtorrent.io">WebTorrent</a>.</p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="base.js"></script>
<script>
window.$ = window.jQuery = require('./js/jquery-1.11.2.min.js')
</script>
<script src="js/bootstrap.min.js"></script>
<script src="js/offcanvas.js"></script>
<!-- Twitter -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</script>
</body>
</html>