-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathresearch.html
More file actions
28 lines (27 loc) · 967 Bytes
/
research.html
File metadata and controls
28 lines (27 loc) · 967 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
---
layout: default
title: Current Projects
desc: Check out what we're working on
nav: Research
extra_head: '<link rel="stylesheet" href="/css/research.css">'
---
<div class="row research-grid">
{% for project in site.data.research %}
<article class="col-md-6 research-card">
{% if project.image %}
<figure class="research-thumb">
<img src="{{ project.image }}" alt="{{ project.title }}" class="img-fluid">
{% if project.caption %}<figcaption>{{ project.caption }}</figcaption>{% endif %}
</figure>
{% endif %}
<h2>{{ project.title }}</h2>
<p class="research-summary">{{ project.summary | markdownify | remove: '<p>' | remove: '</p>' }}</p>
<details class="research-details">
<summary><span class="show-closed">Read more</span><span class="show-open">Read less</span></summary>
<div class="research-body">
{{ project.body | markdownify }}
</div>
</details>
</article>
{% endfor %}
</div>