|
|
@ -46,7 +46,12 @@ role-tables:
|
|
|
|
<section>
|
|
|
|
<section>
|
|
|
|
<h2>Research</h2>
|
|
|
|
<h2>Research</h2>
|
|
|
|
<div class="card-columns">
|
|
|
|
<div class="card-columns">
|
|
|
|
{% for p in site.projects %}
|
|
|
|
{% 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" %}
|
|
|
|
{% if p.status != "inactive" %}
|
|
|
|
{% include project-card.html project=p %}
|
|
|
|
{% include project-card.html project=p %}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|