You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
499 B
HTML
18 lines
499 B
HTML
---
|
|
layout: default
|
|
title: Research Projects
|
|
---
|
|
|
|
<div class="card-columns">
|
|
{% 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.html project=p %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|