-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (47 loc) · 1.72 KB
/
index.html
File metadata and controls
65 lines (47 loc) · 1.72 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
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
---
title: Wikimaps Atlas
layout: default
---
<link rel="stylesheet" href="{{ site.baseurl }}/static/css/world-map.css">
<article id="wikiatlas">
<div class="large-5 columns">
<div class="map"></div>
</div>
<div id="intro" class="large-7 columns panel">
<h1>Wikimaps
<b>Atlas</b>
<div>
<small>Reference maps for the world</small>
</div>
</h1>
<p>The Atlas is a
<a href="http://meta.wikimedia.org/wiki/Wikimaps">Wikimaps</a> component to generate a standardized repository of encyclopedic reference maps for the whole world using open data. The design and development of this project is currently supported through an
<a href="http://meta.wikimedia.org/wiki/Grants:IEG/Wikimaps_Atlas">Individual Engagement Grant</a>from the Wikimedia Foundation.
</p>
<h4>Browse the atlas</h4>
<form>
<input tabindex="1" id="atlas-search" type="search" placeholder="Search for a country or region" autocomplete="off" disabled>
</form>
<h5>Recent posts:</h5>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</article>
<script src="{{ relative }}static/js/world-map.js"></script>
<script>
var Atlas;
$(document).ready(function () {
//Initialize Atlas with Globe World Map
Atlas = new wikiatlas.map({
container:"#wikiatlas",
location:"World",
map:"Admin0",
view:"Globe"
});
});
</script>