-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
23 lines (21 loc) · 840 Bytes
/
research.html
File metadata and controls
23 lines (21 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
title: Research
---
{% for category in site.data.research %}{%
assign prev = 'none' %}
<h3>{{ category.label }}</h3>
<table class="table-hover table-dates">
<tbody>{%
for item in category.items %}
<tr>
<th>{% if item.year != prev %}{{ item.year }}{% assign prev = item.year %}{% endif %}</th>
<td>
{% if item.link %}<a href="{{ item.link }}">{{ item.name }}</a>{% else %}{{ item.name }}{% endif %}<br/>
<span class="text-muted">{{ item.cite }}.</span>{% if item.more %}{% for more in item.more %} <a href="{{ more.link }}" title="{{ more.name }}"><i class="{{ more.icon }}"></i></a>{%endfor %}{% endif %} <!--{% for tag in item.tags %} <span class="label label-default">{{ tag }}</span>{% endfor %}-->
</td>
</tr>{%
endfor %}
</tbody>
</table>
{% endfor %}