forked from vlandham/vlandham.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 761 Bytes
/
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
---
layout: default
title: Home
---
<h2>Visualization</h2>
<ul class="posts">
{% for post in site.categories.vis %}
<li><a class="post_title" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2>Bioinformatics</h2>
<ul class="posts">
{% for post in site.categories.bioinfo %}
<li><a class="post_title" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2>Other</h2>
<ul class="posts">
{% for post in site.categories.other %}
<li><a class="post_title" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<a href="http://github.com/vlandham"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>