-
Notifications
You must be signed in to change notification settings - Fork 29
/
GitHubRepoList.html
executable file
·141 lines (70 loc) · 2.38 KB
/
GitHubRepoList.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE HTML>
<html>
<head>
<title>List of GitHub repositories</title>
<meta content="Lots of lists, most of which are related to Bitcoin or Ethereum one way or another. This is the index page"
<meta content="Bitcoin, bitmessage, meetup, localbitcoin, meetup.com, localbitcoins.com, global, worldwide meetups, local meetups, bitcoinmeetups.org, github" name="keywords" />
<link rel="stylesheet" type="text/css" href="lbmstylespl.css">
<!-- Javascript goes in the document HEAD -->
<script type="text/javascript">
function altRows(id){
if(document.getElementsByTagName){
var table = document.getElementById(id);
var rows = table.getElementsByTagName("tr");
for(i = 0; i < rows.length; i++){
if(i % 2 == 0){
rows[i].className = "evenrowcolor";
}else{
rows[i].className = "oddrowcolor";
}
}
}
}
window.onload=function(){
altRows('alternatecolor');
}
</script>
</head>
<body>
<div id="topLeft"><div align="center">
<strong><a class="ex1" href="http://bitcoinmeetups.org/indexlist.html"><u>I N D E X</u></a> | <a class="ex1" target="_blank" href="https://github.com/Entrances/entrances.github.com/edit/master/GitHubRepoList.html"><u>EDIT THIS PAGE</u></a></strong>
</div></div>
<a name="data" id="data"></a>
<br><br><br>
<!--
BEGINNING TABLE
-->
<table class="altrowstable" id="alternatecolor">
<!--
If you add something to the table, please use the same format as everyone else. Easiest way is to copy paste a whole item from the list i. e. everything between the <tr> and </tr> and then edit the corresponding fields.
Accepted field entries are:
DESCRIPTION:
Description:
URL:
-->
<tbody>
<tr>
<TH COLSPAN="3">
<H3>
List of Github Repositories being actively developed by community members
</H3>
</th>
</tr>
<tr>
<td>
GITHUB REPO:
<a href="https://github.com/Entrances/entrances.github.com">Bitcoinmeetups.org / Entrances.github.io is being developed here as an open source project mainly consisting of lists and tabular data. One important feature is the abundance of Skype conference group which are being constantly maintained.
</a>
</tr>
<tr>
<td>
GITHUB REPO:
<a href="https://github.com/Entrances/entrances.github.com">Add your GitHub Repo here
</a>
</tr>
</tbody></table>
<!--
END TABLE
-->
</body>
</html>