{% assign sorted_projects = site.projects | sort: "order" | reverse %} {% if include.category %}

{{ include.category | capitalize }} Projects

{% assign filtered_projects = sorted_projects | where: "status", include.category %} {% else %} {% assign current_projects = sorted_projects | where: "status", "current" %} {% if current_projects.size > 0 %}

Current Projects

{% for project in current_projects %}
{% include project-card-content.html %}
{% endfor %}
{% endif %} {% assign past_projects = sorted_projects | where: "status", "past" %} {% if past_projects.size > 0 %}

Past Projects

{% for project in past_projects %}
{% include project-card-content.html %}
{% endfor %}
{% endif %} {% endif %} {% for project in site.projects %} {% endfor %}