-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
104 lines (81 loc) · 3.03 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
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>#polyhack</title>
<meta name="description" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:700,400" />
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="./img/favicon.png">
<!-- script
================================================== -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.min.js"></script>
<script src="./js/polyhack.js"></script>
</head>
<body ng-app='poly'>
<header>
<div class="container">
<div class="row">
<div class="col-md-6 col-xs-6">
<a id="logo" href="#"><h2>#polyhack</h2></a>
</div>
<div class="col-md-6 col-xs-6">
<div class="mobile-nav">h</div>
<ul class="main-nav">
<li class="nav-item"><a href="/">Home</a></li>
<li class="nav-item"><a href="https://github.com/polyhack">Github</a></li>
</ul>
</div>
</div>
</div>
</header>
<section id="content" class="container">
<div class="row">
<div class="col-md-12">
<p><strong><a href='https://github.com/polyhack'>#polyhack</a></strong> is a community of programmers based on the IRC freenode network. It is specifically a polyglot group concerned to discuss programming ideas over the long-term.
<p>Its membership is predominantly from the Australian East coast but includes members from North America, New Zealand, and further. It was created in August, 2012.
<br><br>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h6>Members</h6>
<table ng-controller='UserListController'>
<tr>
<th> - </th>
<th>Name</th>
<th>Location</th>
<th>Language Focus</th>
</tr>
<tr ng-repeat='user in users'>
<td><img class='avatar' ng-src='{{details[user.github].avatar_url}}'></td>
<td><a ng-href='https://github.com/{{user.github}}'>{{user.nick}}</a></td>
<td>{{details[user.github].location}}</td>
<td>{{user.lang}}</td>
</tr>
</table>
</div>
</div>
</section>
<footer>
<div class="row">
<div class="col-md-12">
</div>
</div>
</footer>
<!-- Javascript
================================================== -->
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/nav.min.js"></script>
</body>
</html>