-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (30 loc) · 2.01 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
---
layout: default
---
<h2 style="margin-top:20px; margin-bottom:20px">nipy.github.io</h2>
<a href="{{ site.baseurl }}">
<img src="{{ prepend: site.baseurl }}" >
</a>
<p>Welcome to NIPY. The NIPY community is a community of practice 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 <a href="http://neuroimaging.tumblr.com" target="_blank">social media</a>. We welcome <a href="{{ site.baseurl }}contribute.html">contributions</a> and welcome you to read about our <a href="{{ site.baseurl }}conduct.html">standards of conduct</a>, or <a href="{{ site.baseurl }}help.html">ask for help.</a> We develop the following projects:</p>
<div class="panel-group" id="accordion">
{% for grouping in site.data.packages %}
{% for category in grouping.categories %}
{% for package in category.packages %}
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#pr{{ package.tag }}">{{ package.name }} </a>
<a href="{{ package.github }}" target="_blank"><i style="color:#666;float:right;" class="fa fa-github"> </i></a>
<a href="{{ package.doc }}" target="_blank"><i style="color:#333;float:right; margin-right:5px" class="fa fa-home"></i></a>
</h4>
</div>
<div id="pr{{ package.tag }}" class="panel-collapse collapse in">
<div class="panel-body">
<p>{{ package.description }}</p> <a href="{{ site.baseurl }}{{ package.tag }}.html"> <span style="float:right">learn more</a></span></p>
</div>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
{% endfor %}