-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (80 loc) · 3.98 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
---
layout: default
---
<style>
h2 { margin-top:20px; margin-bottom:20px; }
.panel { margin-top: 15px; }
li { list-style-type: none; margin-bottom: 10px; }
a.package-name { text-decoration: underline }
.fa-github { color: #666; }
.fa-home { color: #333; margin-right: 5px; }
</style>
<h2 style="margin-top:20px; margin-bottom:20px">{{ site.title }}</h2>
<p>
Welcome to the <span style="font-weight: bold; text-decoration: underline;">Nonprofit Open Data Collective (NPODC)</span>. We are a <a href="https://en.wikipedia.org/wiki/Community_of_practice" target="_blank">community of practice</a> devoted to the use of open data and development of open source tools in the analysis of non-profit giving and social impact data. You can find us on <a href="https://github.com/Nonprofit-Open-Data-Collective" target="_blank">github</a>, and soon you will find us on social media, through a <a href="#" target="_blank">community blog</a> and <a href="#" target="_blank">twitter</a>.
</p>
<p>
We welcome <a href="{{ '/contribute.html' | absolute_url }}" target="_blank">contributions</a> and ask to read our <a href="{{ '/conduct.html' | absolute_url }}" target="_blank">standards of conduct</a>. You are also invited to <a href="{{ '/help.html' | absolute_url }}" target="_blank">ask for help</a> on how to use any of these resources.
</p>
<p>
We are actively developing the following projects:
</p>
<div class="panel-group" id="accordion">
{% for category in site.data.package-categories %}
{% if category.tag != 'external' %}
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#pr{{ category.tag }}">{{ category.subtitle }}</a>
</h4>
</div>
<div id="pr{{ category.tag }}" class="panel-collapse collapse in">
<div class="panel-body">
{% for package in site.packages %}
{% if package.category == category.tag %}
<li>
<a href="{{ package.github }}" target="_blank"><i class="fa fa-github"> </i></a>
<a href="{{ package.doc }}" target="_blank"><i class="fa fa-home"></i></a>
<a class="package-name" href="{{ package.url | absolute_url }}">{{ package.name }}</a>
- {% if package.one-liner %}{{ package.one-liner }}{% else %}{{ package.description }}{% endif %}
</li>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div>
<p>
We also find the following (unaffiliated) projects useful:
</p>
</div>
<div class="panel-group" id="accordion">
{% for category in site.data.package-categories %}
{% if category.tag == 'external' %}
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#pr{{ category.tag }}">{{ category.subtitle }}</a>
</h4>
</div>
<div id="pr{{ category.tag }}" class="panel-collapse collapse in">
<div class="panel-body">
{% for package in site.packages %}
{% if package.category == category.tag %}
<li>
<a href="{{ package.github }}" target="_blank"><i class="fa fa-github"> </i></a>
<a href="{{ package.doc }}" target="_blank"><i class="fa fa-home"></i></a>
<a class="package-name" href="{{ package.url | absolute_url }}">{{ package.name }}</a>
- {% if package.one-liner %}{{ package.one-liner }}{% else %}{{ package.description }}{% endif %}
</li>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>