-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathresearch.html
More file actions
46 lines (39 loc) · 1.35 KB
/
research.html
File metadata and controls
46 lines (39 loc) · 1.35 KB
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
---
layout: default
title: Research
notitle: true
---
{% assign research = site.data.research %}
<div class="research-page">
<div class="research-shell">
<div class="research-heading page-heading">
<h1 class="page-title">{{ page.title }}</h1>
</div>
{% if research.intro %}
<p class="research-intro">
{{ research.intro }}
</p>
{% endif %}
{% for section in research.sections %}
<section class="research-block" id="{{ section.id }}">
<h2>{{ section.title }}</h2>
{% if section.note %}
<p class="research-block-note">
{{ section.note }}
</p>
{% endif %}
{% for topic in section.topics %}
<article class="research-topic">
<h3>{{ topic.title }}</h3>
<p>{{ topic.description }}</p>
{% if topic.publications and section.id != 'research-methods' %}
{% assign publication_key = topic.publications %}
{% assign publication_items = site.data.research_publications[publication_key] %}
{% include research-publications.html items=publication_items %}
{% endif %}
</article>
{% endfor %}
</section>
{% endfor %}
</div>
</div>