diff --git a/projects/meta/index.md b/projects/meta/index.md
index db10b1a915c66e4463ab1da940f427fe80208b91..5173ed688ade3bf4e21b6e22ba7195a883b5faba 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/).