summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
Diffstat (limited to 'projects')
-rw-r--r--projects/index.html12
1 files changed, 5 insertions, 7 deletions
diff --git a/projects/index.html b/projects/index.html
index 736558d..9ba9f64 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -4,11 +4,9 @@ title: Ben Burwell’s Projects
description: Projects I’ve done.
---
-{% for post in site.posts %}
- {% if post.type == "project" %}
- <div class="project">
- <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
- <p>{{ post.description }}</p>
- </div>
- {% endif %}
+{% for post in site.categories.projects %}
+ <div class="project">
+ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
+ <p>{{ post.description }}</p>
+ </div>
{% endfor %}