summaryrefslogtreecommitdiff
path: root/writing
diff options
context:
space:
mode:
authorBen Burwell <bburwell1@gmail.com>2014-04-30 20:32:33 -0400
committerBen Burwell <bburwell1@gmail.com>2014-04-30 20:32:33 -0400
commitcbb297cd9b9ecb5f0d7c956b3453b132c4884e5a (patch)
tree3d7df5b323e867b1e0a5f8d2ba9549bc430c89d3 /writing
parent976ac27631eb1e09f5ebd4cd91dcab37fd4f4853 (diff)
Okay, maybe this'll do it for permalinks?
Diffstat (limited to 'writing')
-rw-r--r--writing/index.html12
1 files changed, 5 insertions, 7 deletions
diff --git a/writing/index.html b/writing/index.html
index 43de7f5..b7ad2a5 100644
--- a/writing/index.html
+++ b/writing/index.html
@@ -4,11 +4,9 @@ title: Ben Burwell’s Writing
description: A small collection of writing I’ve done on various topics over the years.
---
-{% for post in site.posts %}
- {% if post.type == "writing" %}
- <div class="writing">
- <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
- <p>{{ post.description }}</p>
- </div>
- {% endif %}
+{% for post in site.categories.writing %}
+ <div class="writing">
+ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
+ <p>{{ post.description }}</p>
+ </div>
{% endfor %}