forked from ALEXO-30/electrum-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community.html
118 lines (103 loc) · 4.32 KB
/
community.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang=en>
<head>
<title>Electrum Bitcoin Client</title>
<meta charset=utf-8 />
<meta name=description content="Lightweight Bitcoin Client" />
<meta name=keywords content="electrum,bitcoin,blockchain,lightweight,instant" />
<!--<meta name=viewport content="width=device-width, initial-scale=1.0" />-->
<!--[if lt IE 9]>
<script type="text/javascript" src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/screen.css" />
<!-- /Styles -->
<!-- Links -->
<link rel="shortcut icon" href="favicon.ico" />
<link rel=apple-touch-icon-precomposed href=.png />
<link rel=author type=text/plain href=humans.txt>
<!-- /Links -->
<!-- Analytics -->
<!-- /Analytics -->
<!-- js -->
<script src=https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js></script>
<script>
$(document).ready(function(){
$('#translations').load('langs_nav.html #langs_main');
$('#nav').load('langs_nav.html #nav_en');
});
</script>
<!-- /js -->
</head>
<body>
<header>
<div class="container">
<nav id=translations>
<!-- langs -->
</nav>
<nav id=nav>
<!-- nav -->
<!-- DON'T MODIFY for translations, use 'langs_nav.html' as explained in the README file -->
<ul id=nav_en class=nav>
<li><a href="index.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="community.html">Community</a></li>
</ul>
<!-- /DON'T MODIFY end -->
</nav>
<div class=header>
<i id=electrum_logo><img src="media/electrum_logo.png" alt="Electrum" border="none" width="70" align="top" /></i>
<div id=logo><span><h1>Electrum</h1></span></div>
<h2>Lightweight Bitcoin Client</h2>
</div>
</div>
</header>
<section class="container">
<h3>Community</h3>
<ul>
<li>Development: <a href="https://github.com/spesmilo/electrum">Project page on GitHub</a></li>
<li>Discussion, help: <a href="https://bitcointalk.org/index.php?board=98.0">Electrum subforum at bitcointalk.org</a></li>
<li>Bug reports: <a href="https://github.com/spesmilo/electrum/issues?direction=desc&sort=updated&state=open">Github</a></li>
<li>IRC channel: join the <a href="irc://irc.freenode.net/electrum">#electrum</a> channel on Freenode</li>
<li>Localization: <a href="https://crowdin.net/project/electrum">https://crowdin.net/project/electrum</a></li>
<li>Contribute to this website: <a href="https://github.com/ecdsa/electrum-web/">send us a pull request</a></li>
<li>Servers list and status: <a href="http://arche.jooz.net/">http://arche.jooz.net/</a></li>
<li>How to run your own server: <a href="https://github.com/spesmilo/electrum-server/blob/master/HOWTO.md">HOWTO</a> and <a href="http://foundry.electrum.org/">database foundry</a></li>
<li>Twitter: <a href="https://twitter.com/ElectrumWallet">@ElectrumWallet</a>
</ul>
<h3>Developers</h3>
<ul>
<li>
Thomas Voegtlin
<a href="https://github.com/ecdsa">[github]</a>
<a href="http://pool.sks-keyservers.net:11371/pks/lookup?op=vindex&search=0x6694D8DE7BE8EE5631BED9502BD5824B7F9470E6">[gpg]</a></li>
<li>
Maran Hidskes
<a href="https://github.com/maran">[github]</a>
<a href="http://pool.sks-keyservers.net:11371/pks/lookup?op=vindex&search=0x22453004695506FD">[gpg]</a>
</li>
<li>
Michael Wozniak
<a href="https://github.com/wozz">[github]</a>
<a href="http://pgp.mit.edu/pks/lookup?op=vindex&search=0x038C09F462C24FC7">[pgp]</a>
</li>
<li>
EagleTM
<a href="https://github.com/EagleTM">[github]</a>
</li>
</ul>
<h3>Contributors</h3>
<ul>
<li>Azelphur - GUI stuff.</li>
<li>Coblee - Alternate coin support and py2app support.</li>
<li>Deafboy - Ubuntu packages.</li>
<li>ErebusBat - Mac distribution.</li>
<li>Genjix - Porting pro-mode functionality to lite-gui.</li>
<li>Slush - Work on the server. Designed the original Stratum spec.</li>
<li>Tuxavant - Various fixes to the client.</li>
<li>rdymac - Website and translations.</li>
</ul>
</section><!-- /container -->
</body>
</html>