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