-
Notifications
You must be signed in to change notification settings - Fork 10
/
contribute.html
78 lines (73 loc) · 2.84 KB
/
contribute.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
---
layout: default
---
<h1 style="padding-bottom:50px">How do you want to contribute?</h1>
<p style="padding-bottom:100px">We invite all members of the community to contribute. Have a question, idea, research update, or conference summary? Please, find below the ways in which you can contribute.</p>
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-8">
<h3>Developer</h3>
</div>
</div>
<div class="row">
<div class="col-md-4">
{% include svg/github.svg %}
</div>
<div class="col-md-8">
<div class="well infobox">
<a href='#add-a-package'>Add a package</a><br>
<a href='#write-a-post'>Write a blog post</a><br>
<a href='#contribute-to-site'>Contribute to this website</a><br>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-8">
<h3>Neuroimaging Scientist</h3>
</div>
</div>
<div class="row">
<div class="col-md-4">
{% include svg/scientist.svg %}
</div>
<div class="col-md-8">
<div class="well infobox">
<a href='#ask-a-question'>Ask a question</a><br>
<a href='#learn-about-nipy'>Learn about our organization</a><br>
<a href='#research-opportunities'>Research Opportunities</a><br>
</div>
</div>
</div>
</div>
</div>
{% for grouping in site.data.contribute %}
{% for category in grouping.categories %}
<h2 style="margin-bottom:25px;margin-top:25px">{{ category.subtitle }}</h2>
<div class="panel-group" id="accordion">
{% for question in category.questions %}
<div class="panel panel-default">
<div id="{{ question.tag }}" class="panel-heading" style="background-color:#649700;color:white">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#pr{{ question.tag }}">{{ question.question }} </a>
</h4>
</div>
<div id="pr{{ question.tag }}" class="panel-collapse collapse in">
<div class="panel-body" style="padding-left:60px; padding-right:60px">
<p>{{ question.answer }}</p>
</div>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
{% endfor %}
<p>Thanks for stopping by!</p>
<img src="{{ '/img/reggie.png' | prepend: site.baseurl }}"/>
</div>