-
Notifications
You must be signed in to change notification settings - Fork 7
/
news.html
56 lines (48 loc) · 1.88 KB
/
news.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
---
layout: page
title: News
---
{% capture section_content %}
<a href="{{ site.baseurl }}/announcements" class="unstyled-link"><h2>Announcements</h2></a>
<ul class="list-unstyled articles-list">
{% for post in site.posts limit: 5 %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}" class="article-title">{{ post.title | escape }}</a>
<div class="article-subheading">{{ post.date | date: "%Y-%m-%d" }}</div>
</li>
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/announcements">More →</a>
{% endcapture %}
{% include section.html %}
{% capture section_content %}
<a href="{{ site.baseurl }}/research" class="unstyled-link"><h2>Research</h2></a>
<ul class="list-unstyled articles-list">
{% for article in site.data.publications limit:5 %}
<li>
<a href="{{ site.baseurl }}/documents/{{ article.filename }}" target="_blank" class="article-title">{{ article.title }}</a>
<div class="article-subheading">
{{ article.authors }}. ({{ article.year }}).
{% if article.external_link %}<a href="{{ article.external_link }}" target="_blank">{% endif %}
{{ article.journal }}.
{% if article.external_link %}</a>{% endif %}
</div>
</li>
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/research">More →</a>
{% endcapture %}
{% include section.html %}
{% capture section_content %}
<a href="{{ site.baseurl }}/press" class="unstyled-link"><h2>In the Press</h2></a>
<ul class="list-unstyled articles-list">
{% for article in site.data.press-articles limit:5 %}
<li>
<a href="{{ article.url }}" target="_blank" class="article-title">{{ article.title }}</a>
<div class="article-subheading">{{ article.source }}, {{ article.date | date: "%Y-%m-%d" }}</div>
</li>
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/press">More →</a>
{% endcapture %}
{% include section.html %}