-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
64 lines (57 loc) · 1.88 KB
/
index.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
57
58
59
60
61
62
63
64
---
layout: default
title: Home
notitle: true
# roles to show on front page (not all in people.yaml)
picture-role-groups:
- {roles: [faculty], width: 12}
#- {roles: [postdoc], width: 12}
- {roles: [grad], width: 12}
#- {roles: [ugrad], width: 12}
no-picture-role-groups:
- {roles: [collab], width: 12}
- {roles: [ugrad-alum], width: 12}
displayprojectpeople: false
---
<div class="display-6 rounded mission">
<div class="container-fluid py-4 py-md-5">
<p class="fs-4 fs-md-3">
We use solid-state NMR spectroscopy to bring new insight to biomolecules in the extracellular matrix that are relevant to human health and disease.
We are based at the <a href="https://warwick.ac.uk/">University of Warwick</a>, UK.
</p>
</div>
</div>
<section>
<h2>News</h2>
<ul class="news list-unstyled">
{% for post in site.posts limit: site.front_page_news %}
{% include news-item.html item=post %}
{% endfor %}
</ul>
{% assign numposts = site.posts | size %}
{% if numposts > 1 %}
<p>
<span class="fa fa-fw fa-history"></span>
<a href="{% link posts.html %}">Older posts…</a>
</p>
{% endif %}
</section>
<section>
<h2>Research</h2>
<div class="row" data-masonry='{"percentPosition": true }'>
{% comment %}
Sort the projects by date, putting those without dates last
{% endcomment %}
{% assign projects_by_date = site.projects | sort: 'last-updated', 'first' %}
{% assign projects_by_date = projects_by_date | reverse %}
{% for p in projects_by_date %}
{% if p.status != "inactive" %}
{% include project-card-person.html project=p %}
{% endif %}
{% endfor %}
</div>
</section>
<div id="people">
<h2>People</h2>
{% include persons-specific-in-sections.html %}
</div>