-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (99 loc) · 3.05 KB
/
index.html
File metadata and controls
110 lines (99 loc) · 3.05 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
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
---
layout: default
---
<style>
.tools .heading, .collaborate .heading {
margin-bottom: 15px;
}
.tools .heading h2, .collaborate .heading h2 {
text-align: center;
}
.tools .heading .glyphicon, .collaborate .heading .glyphicon {
margin-top: -0.2em;
vertical-align: middle;
}
.collaborate {
margin-top: 20px;
}
.footer {
text-align: center;
}
</style>
<div class="jumbotron">
<div class="container">
<h1>CoverageJSON</h1>
<p>A format for publishing geotemporal data to the web.</p>
<p>
<a class="btn btn-lg btn-primary" href="/playground/" role="button">Go to Playground »</a>
</p>
</div>
</div>
<div class="container tools">
<div class="row heading">
<h2 class="span12"><span class="glyphicon glyphicon-cog" aria-hidden="true"></span> Tools</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading"><h4>JavaScript</h4></div>
<div class="list-group">
{% for tool in site.data.tools.javascript %}
<a href="{{ tool.url }}" class="list-group-item">
<h5 class="list-group-item-heading">{{ tool.name }}</h5>
<p class="list-group-item-text">{{ tool.description }}</p>
</a>
{% endfor %}
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading"><h4>Java</h4></div>
<div class="list-group">
{% for tool in site.data.tools.java %}
<a href="{{ tool.url }}" class="list-group-item">
<h5 class="list-group-item-heading">{{ tool.name }}</h5>
<p class="list-group-item-text">{{ tool.description }}</p>
</a>
{% endfor %}
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading"><h4>Python</h4></div>
<div class="list-group">
{% for tool in site.data.tools.python %}
<a href="{{ tool.url }}" class="list-group-item">
<h5 class="list-group-item-heading">{{ tool.name }}</h5>
<p class="list-group-item-text">{{ tool.description }}</p>
</a>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
<div class="container collaborate">
<div class="row heading">
<h2 class="span12"><span class="glyphicon glyphicon-comment" aria-hidden="true"></span> Getting Help / Collaborating</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading"><h4>CoverageJSON Specification Repository</h4></div>
<div class="list-group">
<a href="https://github.com/opengeospatial/CoverageJSON" class="list-group-item">
<h5 class="list-group-item-heading"><img src="/img/GitHub-Mark-64px.png" width=32 /> opengeospatial/CoverageJSON</h5>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="container footer">
<hr>
<p>
Copyright © 2015-2026 The University of Reading, UK
</p>
</div>