-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
48 lines (43 loc) · 2.43 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
---
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.url }}</h2>
<p>
Welcome to NIPY. We are a <a href="https://en.wikipedia.org/wiki/Community_of_practice" target="_blank">community of practice</a> devoted to the use of the Python programming language in the analysis of neuroimaging data. You can find us on <a href="https://github.com/nipy" target="_blank">github</a>, as well as social media <a href="https://neuroimaging.tumblr.com" target="_blank">[blog]</a> <a href="https://twitter.com/nipyorg" target="_blank">[twitter]</a>. We welcome <a href="{{ '/contribute.html' | prepend: site.baseurl }}" target="_blank">contributions</a> and ask that you read about our <a href="{{ '/conduct.html' | prepend: site.baseurl }}" target="_blank">standards of conduct</a>. You are also invited to <a href="{{ '/help.html' | prepend: site.baseurl }}" target="_blank">ask for help.</a>
</p>
<p>
Our community includes the following projects:
</p>
<div class="panel-group" id="accordion">
{% for category in site.data.package-categories %}
<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 | prepend: site.baseurl }}">{{ package.name }}</a>
- {% if package.one-liner %}{{ package.one-liner }}{% else %}{{ package.description }}{% endif %}
</li>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>