-
Notifications
You must be signed in to change notification settings - Fork 3
/
tools.html
74 lines (69 loc) · 2.24 KB
/
tools.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
---
layout: default
title: Tools
permalink: /tools/
---
<style>
.tools .panel-heading h3 {
margin-top: 12px;
margin-bottom: 12px;
}
</style>
<div class="container tools">
<div class="page-header">
<h2>Tools</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading"><h3>JavaScript</h3></div>
<div class="list-group">
{% for tool in site.data.tools.javascript %}
<a href="{{ tool.url }}" class="list-group-item">
<h4 class="list-group-item-heading">{{ tool.name }}</h4>
<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"><h3>Java</h3></div>
<div class="list-group">
{% for tool in site.data.tools.java %}
<a href="{{ tool.url }}" class="list-group-item">
<h4 class="list-group-item-heading">{{ tool.name }}</h4>
<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"><h3>Python</h3></div>
<div class="list-group">
{% for tool in site.data.tools.python %}
<a href="{{ tool.url }}" class="list-group-item">
<h4 class="list-group-item-heading">{{ tool.name }}</h4>
<p class="list-group-item-text">{{ tool.description }}</p>
</a>
{% endfor %}
</div>
</div>
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">How to add your tool</h3>
</div>
<div class="panel-body">
Just submit a pull request for the
<a href="https://github.com/covjson/covjson.github.io/blob/master/_data/tools.yaml">tools.yaml</a>
file on GitHub, and once accepted, your tool will appear here immediately.
<a href="https://github.com/covjson/covjson.github.io/issues/new">Create an issue</a>
if your tool is written in a language other than the ones above.
</div>
</div>
</div>