-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
97 lines (89 loc) · 4.04 KB
/
index.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
95
96
97
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>Bitcoin Classic</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bitcoin Classic">
<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/icon">
<link rel="icon" href="assets/img/favicon.ico" type="image/icon">
<link rel="stylesheet" href="assets/css/bitcoin-classic.css">
<script src="assets/js/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id="container">
<header>
<div class="grid">
<div class="col-1-3">
<a href="/"><img src="assets/img/[email protected]" alt="Bitcoin Classic Logo"></a>
</div>
<div class="col-2-3">
<button id="openMenu" class="openMenu" name="Menu toggle">
<img src="assets/img/menu_open.png" alt="Open menu">
</button>
</div>
</div>
<nav>
<ul class="menu">
<li>
<a class="" href="#" title="Getting started">Getting Started</a>
<ul>
<li><a class="" href="/gettingstarted.html" title="Overview">Overview</a></li>
<li><a class="" href="/downloads/index.html" title="Downloads">Downloads</a></li>
<li><a class="" href="/linuxbuilds.html" title="Linux builds">Linux builds</a></li>
</ul>
</li>
<li><a class="" href="/community.html" title="Get Involved">Get Involved</a></li>
<li><a class="" href="/news.html" title="News">News</a></li>
</ul>
</nav>
</header>
<div class="content">
<section>
<p><strong>Bitcoin Classic stands for the original Bitcoin as Satoshi described it, "A Peer-to-Peer Electronic Cash System".</strong></p>
<p><b>News update</b>; <a href="/news/closing.html">Classic closing down</a>!</p>
<p>We are writing the software that miners and users say they want. We will make sure it solves their needs, help them deploy it, and gracefully upgrade the bitcoin network's capacity together.</p>
<p>The <a href="https://zander.github.io/posts/Scaling%20Bitcoin/" target="_resources">data shows</a> that Bitcoin can grow, on-chain, to welcome many more users onto our coin in a safe and distributed manner.</p>
<p>In the future we will continue to release updates that are in line with Satoshi’s whitepaper & vision, and are agreed upon by the community.</p>
</section>
<section>
<ul class="grid">
<li class="col-1-3">
<a href="bitcoin.pdf" target="_whitepaper">
<p class="subHeader">Bitcoin whitepaper</p>
<div>
<img src="assets/img/whitepaper.jpg" alt="Bitcoin whitepaper image">
</div>
</a>
</li>
<li class="col-1-3">
<a href="downloads/index.html">
<p class="subHeader">Download</p>
<div>
<img src="assets/img/download.jpg" alt="Download Bitcoin Classic image">
</div>
</a>
</li>
<li class="col-1-3">
<a href="http://zander.github.io/" target="_resources">
<p class="subHeader">Blog</p>
<div>
<img src="assets/img/blog.jpg" alt="Blog image">
</div>
</a>
</li>
</ul>
</section>
</div>
<footer>
<div class="grid">
<div class="col-1-3"><img src="assets/img/btcfooter.png"/>
</div>
<div class="col-2-3"><span id="copyright">© 2016-2017 Bitcoin Classic</br>
Content licensed under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC by-sa</a></span></div>
</div>
</footer>
</div>
<script src="assets/js/bitcoin-classic.js"></script>
</body>
</html>