-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 951 Bytes
/
index.html
File metadata and controls
40 lines (35 loc) · 951 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
37
38
39
40
---
layout: default
title: Home
notitle: true
---
{% include paper-image-strip.html %}
<div id="research">
<section>
<h2>Research</h2>
<div class="card-columns">
{% for p in site.projects %}
{% if p.status != "inactive" %}
{% include project-card.html project=p %}
{% endif %}
{% endfor %}
</div>
</section>
</div>
<section>
<div id="news">
<h2>News</h2>
<ul class="news home-news list-unstyled">
{% for post in site.posts limit: site.front_page_news %}
{% include news-item.html item=post show_image=false %}
{% endfor %}
</ul>
{% assign numposts = site.posts | size %}
{% if numposts >= 1 %}
<p>
<span class="fa fa-fw fa-history"></span>
<a href="{{ site.baseurl }}/blog.html">Older posts…</a>
</p>
{% endif %}
</div>
</section>