From 0adad0e461f01dbe9da7409d2e51189f3d10f837 Mon Sep 17 00:00:00 2001
From: Michael Kohlhase <m.kohlhase@jacobs-university.de>
Date: Sat, 24 Jun 2017 11:29:17 +0200
Subject: [PATCH] better?

---
 projects/meta/index.md | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/projects/meta/index.md b/projects/meta/index.md
index db10b1a..5173ed6 100644
--- a/projects/meta/index.md
+++ b/projects/meta/index.md
@@ -4,24 +4,25 @@ title: Projects
 permalink: /projects/
 ---
 
-{% assign projects = site.pages | where: "layout", "project" | where: "active", true | sort: "start_date" %}
 
-### Projects with current, external funding ([completed projects](../completed)).
+#### Projects with current, external funding ([completed projects](../completed)).
+{% assign projects = site.pages | where: "layout", "project" | where: "active", true | sort: "start_date" %}
 
 <ul class="collection">
     {% for item in projects %}
-    {% if item.funding %} {% include psitem.html %} {% endif %}
+      {% include psitem.html %}
     {% endfor %}
 </ul>
 
-### Internal Projects
+#### Internal Projects
 We also organize some of our research and development into Projects, 
+{% assign internal = site.pages | where: "layout", "project" | where: "active", true | where: "funding" | sort: "start_date" %}
 
 <ul class="collection">
-    {% for item in projects %}
-    {% unless item.funding %} {% include psitem.html %} {% endunless %}
+    {% for item in internal %}
+       {% include psitem.html %}
     {% endfor %}
 </ul>
 
-### System Projects
+#### System Projects
 Projects that are focused on building particular systems can be found under [KWARC Systems](../../systems/).
-- 
GitLab