forked from loggingroads/logging-roads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·93 lines (81 loc) · 3.29 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
---
layout: map
banner: cifor_wood_truck.jpg
title: home
baseLayer: crowdcover.2f433a39
center:
lat: 0.0
lon: 22.0
zoom: 6
## redeployed http://45.55.129.242:6543/ projects
tm_projects:
drc:
project_id: 2
car:
project_id: 3
cog:
project_id: 4
---
{% include tutorial.html %}
{% include map-container.html %}
<section id="leaderboard" class="row clearfix">
<h2 class="text-center">Leaderboard</h2>
<p class="text-center shrink mbl">List of top contributors, ranked by number of edits.<br>Click on a User Name to view their edits.</p>
<div class="large-12 columns">
<div id="top-editors">
<ul>
<li class="head-row clearfix">
<span class="small-1 columns text-center">Rank</span>
<span class="small-5 columns">User Name</span>
<span class="small-2 columns text-right">Total Edits</span>
<span class="small-2 columns text-right">Node Edits</span>
<span class="small-2 columns text-right">Way Edits</span>
</li>
</ul>
</div>
</div>
</section>
<section id="countries">
<div class="row">
<div class="large-12 columns mbl">
<h2 class="text-center">Start Mapping</h2>
<p class="text-center shrink">To contribute, click on a country below and choose a single grid task from the Tasking Manager. Editing is handled by the Humanitarian OpenStreetMap Team's Tasking Manager.</p>
<p class="text-center shrink">For more detailed instructions, check out the project <a href="{{site.baseurl}}/guide/">Mapping Guide</a>.</p>
</div>
<div class="small-12 columns">
<ul class="small-block-grid-1 medium-block-grid-3">
{% for country in site.data.countries %}
{% assign col = forloop.index0 | modulo:3 | plus:1 %}
<li class="country ptm {% if forloop.rindex <= 3 %}last-row {% endif %}
{% if col == 3 or forloop.last %}last-col{% endif %}">
<a href="http://tasks.loggingroads.org/project/{{country.tm_project_id}}"
class="clearfix {% unless country.tm_project_id %}disabled{% endunless %}" target="_blank">
<div class="large-12 columns mg mg-fw mg-6x {{country.map_glyph}}"></div>
<h4 class="text-center ptm phm mvn">{{country.name}}</h4>
{% unless country.tm_project_id %}
<h4 class="text-center mvn"><em>coming soon...</em></h4>
{% endunless %}
</a>
</li>
{% endfor %}
</ul>
</div>
{% comment %}
{% for country in site.data.countries %}
{% if forloop.index0 | modulo:3 == 0 %}
<div class="row small-block-grid-1 medium-block-grid-3">
{% endif %}
<li class="country ptm keyline-bottom {% unless forloop.index %}keyline-right{% endunless %}">
<a href="http://tasks.loggingroads.org/project/{{country.tm_project_id}}"
class="clearfix {% if country.tm_project_id == null %}disabled{% endif %}" target="_blank">
<div class="large-12 columns mg mg-fw mg-6x {{country.map_glyph}}"></div>
<h4 class="text-center pam">{{country.name}}</h4>
</a>
</li>
{% if forloop.index | modulo:3 == 0 or forloop.last %}
</div>
{% endif %}
{% endfor %}
{% endcomment %}
</div>
</section>