forked from MRtrix3/MRtrix3.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (25 loc) · 677 Bytes
/
index.html
File metadata and controls
36 lines (25 loc) · 677 Bytes
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
---
layout: frontpage
---
<div class="home">
<div class="about">
<h1>{{ site.data.frontpage.about.title }}</h1>
<p>{{ site.data.frontpage.about.description }}</p>
<hr>
</div>
{% include feature_list.html %}
<hr>
<div class="post-snippet">
<h1>Latest posts</h2>
<hr>
{% for post in site.posts limit:1 %}
{% include post_snippet.html param=post %}
{% endfor %}
{% for post in site.posts limit:2 offset:1 %}
{% include post_micro_snippet.html param=post %}
{% endfor %}
</div>
{% include contributors.html %}
<hr>
{% include affiliations.html %}
</div>