summaryrefslogtreecommitdiff
path: root/writing
diff options
context:
space:
mode:
authorBen Burwell <bburwell1@gmail.com>2014-04-30 20:18:33 -0400
committerBen Burwell <bburwell1@gmail.com>2014-04-30 20:18:33 -0400
commit543f6b5590f564e9095c8d7b390730d09fdbe1f2 (patch)
tree3eed955b83e32a984ab477a955f8409f33ad9cdf /writing
parentc8db3b6866dda8c25ae54afe16611aa7c0cb7cd4 (diff)
Add writing/project differentiation and fix class
Diffstat (limited to 'writing')
-rw-r--r--writing/index.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/writing/index.html b/writing/index.html
index ec58a49..43de7f5 100644
--- a/writing/index.html
+++ b/writing/index.html
@@ -5,6 +5,10 @@ description: A small collection of writing I’ve done on various topics over th
---
{% for post in site.posts %}
- <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
- <p>{{ post.description }}</p>
+ {% if post.type == "writing" %}
+ <div class="writing">
+ <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
+ <p>{{ post.description }}</p>
+ </div>
+ {% endif %}
{% endfor %}