This repository has been archived by the owner on Aug 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
55 lines (48 loc) · 1.71 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
<html>
<head>
<title>We Build</title>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1><img src="logo.png" alt="Logo" class="logo" width="20" height="20"> We Build SG</h1>
<script id="template-events" type="text/x-handlebars-template">
<h2><a href="{{website}}" target="_blank">Upcoming events</a> …</h2>
<ul class="list">
{{#events}}
<li>
<p class="info"><a href="{{url}}" target="_blank">{{name}}</a></p>
<p class="desc">by <strong>{{group_name}}</strong> on <strong>{{formatted_time}}</strong></p>
<p class="location">{{location}}</p>
</li>
{{/events}}
</ul>
</script>
<script id="template-repos" type="text/x-handlebars-template">
<h2><a href="{{website}}" target="_blank">Recently updated repos</a> …</h2>
<ul class="list">
{{#repos}}
<li>
<p class="info"><a href="{{html_url}}" target="_blank">{{name}}</a></p>
<p class="desc">{{description}}</p>
<p><span class="spacing">★ {{stargazers_count}}</span><span class="spacing">{{language}}</span></p>
</li>
{{/repos}}
</ul>
</script>
<script id="template-feedback" type="text/x-handlebars-template">
<a href="{{feedback}}" target="_blank" class="menu-btn">Feedback</a>
</script>
<div id="results">
<div id="result-events"><div class="loader">Loading...</div></div>
<div id="result-repos"><div class="loader">Loading...</div></div>
</div>
<div class="menu">
<span id="result-feedback"></span>
<a href="#" id="quit" class="menu-btn">Quit</a>
</div>
<div id="result-menu"></div>
<script src="lib/handlebars.js"></script>
<script src="script.js"></script>
</body>
</html>