-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.35 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.35 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Community website</title>
</head>
<body>
{% include 'ribbon.html' %}
<img src="static/org_logo.png" alt="org logo" height="42" width="42">
<ul>
<li><a href="gci/">Google Code-in</a>
<li><a href="activity/">GitHub activity</a>
<li><a href="twitter/">Twitter Feed</a>
<li><a href="info.txt">Build info</a>
<li><a href="log/">Logs</a>
<li><a href="contributors/">Contributors data</a>
<li><a href="meta-review/">Meta-review data</a>
<li><a href="gamification/">Gamification leaderboard</a>
<li><a title="List of all the issues on organization's main repository on which assignee has not shown any activity for more than 2 months."
href="static/inactive-issues.json">Inactive Issues</a>
<li><a href="openhub/">OpenHub Data</a>
<li><a href="model/">Visit imported data</a>
<li><a title="List of all the issues on organization main repository on which someone has opened a pull request without getting assigned to it."
href="static/unassigned-issues.json">Unassigned issues activity</a>
</ul>
{% if isTravis %}
<small>This website was built automatically using Travis CI. A link to the build can be found <a href="{{ travisLink }}">here</a>.</small>
{% endif %}{# if isTravis #}
</body>
</html>