diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-06-26 21:58:45 -0400 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-06-26 21:58:45 -0400 |
commit | e597f784d10da1786835c4e76cc9759673ae065d (patch) | |
tree | a671c40fb279bab2d06fef083496e2d201288fbd | |
parent | f04077aca970f49cf4d9e22982b2b1f9d659dd13 (diff) |
Remove descriptions from projects & writing
-rw-r--r-- | projects/index.html | 1 | ||||
-rw-r--r-- | writing/index.html | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/projects/index.html b/projects/index.html index 29e65ae..2c92c36 100644 --- a/projects/index.html +++ b/projects/index.html @@ -7,6 +7,5 @@ description: Projects I’ve done. {% for post in site.categories.projects %} <section class="project"> <h1><a href="{{ post.url }}">{{ post.title }}</a></h1> - <p>{{ post.description }}</p> </section> {% endfor %} diff --git a/writing/index.html b/writing/index.html index 3a34229..feee3c1 100644 --- a/writing/index.html +++ b/writing/index.html @@ -7,6 +7,5 @@ description: A small collection of writing I’ve done on various topics over th {% for post in site.categories.writing %} <section class="writing"> <h1><a href="{{ post.url }}">{{ post.title }}</a></h1> - <p>{{ post.description }}</p> </section> {% endfor %} |