-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
159 lines (158 loc) · 5.12 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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Metacoder - Logical Beauty</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="style/octicon.css">
<link rel="stylesheet" href="style/main.css">
<script src="lib/jquery.min.js"></script>
<script src="lib/underscore-min.js"></script>
<script src="script/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-67084821-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header>
<div class="content">
<h1 id="logo">Metacoder - Logical Beauty</h1>
<nav role="navigation">
<ul>
<li>
<a href="https://github.com/metacoder-bgy" target="_blank">GitHub</a>
</li>
<li>
<a href="http://bgy.gd.cn" target="_blank">GCGS</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="https://groups.google.com/forum/#!forum/metacoder/join" target="_blank">Subscribe</a>
</li>
</ul>
</nav>
</div>
</header>
<section>
<img class="head-image" src="img/eta.png">
<div class="content">
<h1>Introduction</h1>
<p>
Metacoder is a club in Pre-University section of Guangdong Country Garden School founded in 2012. We consist of passionate students who are keen on computer science and math. We study, program and hack.
</p>
<p>
We are looking for new members. Regardless of where you are or how much you know about programming. If you have interest, please
<a href="#contact">contact us</a>.
</p>
</div>
</section>
<script type="text/x-underscore" id="tmpl-loader">
<div class="loader">
<div class="left stick"><span></span></div>
<div class="right stick"><span></span></div>
</div>
</script>
<script type="text/x-underscore" id="tmpl-repos">
<ul class="repolist">
<% _.each(repos, function (repo) { %>
<li>
<ul class="repo-stats">
<li class="language"><%= repo.language %></li>
<li class="stargazers">
<a href="<%= repo.html_url %>/stargazers" title="Stargazers" target="_blank">
<span class="octicon octicon-star"></span>
<%= repo.watchers %>
</a>
</li>
<li class="forks">
<a href="<%= repo.html_url %>/network" title="Forks" target="_blank">
<span class="octicon octicon-git-branch"></span>
<%= repo.forks_count %>
</a>
</li>
</ul>
<span class="repolist-icon">
<span class="mega-octicon <%= icon(repo) %>"></span>
</span>
<h3 class="repolist-name">
<a href="<%= repo.html_url %>" target="_blank"><%= repo.name %></a>
</h3>
<div class="body">
<p class="description"><%= repo.description %></p>
<p class="updated-at">
Last updated
<time title="<%= repo.updated_at %>"><%= when(repo.updated_at) %></time>
</p>
</div>
</li>
<% }); %>
</ul>
</script>
<script type="text/x-underscore" id="tmpl-members">
<ul class="member-list">
<% _.each(members, function (member) { %>
<li>
<ul class="member-stats">
<% if (member.links) { _.each(member.links, function (link) { %>
<li class="link">
<a target="_blank" href="<%= link.url %>">
<span class="octicon <%= icon(link) %>"></span>
<%= link.title %>
</a>
</li>
<% })}; %>
<li class="entry-year">
<span title="Entry year">
<span class="octicon octicon-arrow-right"></span>
<%= member.entry_year %>
</span>
</li>
</ul>
<span class="member-icon">
<span class="mega-octicon octicon-person"></span>
</span>
<h3 class="member-name"><%= member.name %></a></h3>
<div class="body">
<p class="description"><%= member.fullname || '' %></p>
</div>
</li>
<% }); %>
</ul>
</script>
<section id="repos">
<div class="content">
<h1>Projects</h1>
<div class="inner"></div>
</div>
</section>
<section id="members">
<div class="content">
<h1>People</h1>
<div class="inner"></div>
</div>
</section>
<section>
<div class="content">
<h1 id="contact">Contact</h1>
<p>
Email:
<a href="mailto:shou@metacoder.org">
shou<span class="nospam">@</span>metacoder.org
</a>
<br>
Address: Country Garden School, Beijiao Town, Foshan City, Guangdong, China.
</p>
</div>
</section>
<footer id="footer">
<p>Copyright © 2013 - 2016, Metacoder</p>
</footer>
</body>
</html>