diff options
author | Ben Burwell <bburwell1@gmail.com> | 2014-11-14 11:22:48 -0500 |
---|---|---|
committer | Ben Burwell <bburwell1@gmail.com> | 2014-11-14 11:22:48 -0500 |
commit | 53109fa5e1404c0f5cd4328135f5b5fd7c88b555 (patch) | |
tree | a1e896c3215464da7e76678ce9c71a4e1789934a /writing/index.html | |
parent | 1a17df7a5780bfceaf5fb143e847b71c6368e706 (diff) |
Further optimizations
Diffstat (limited to 'writing/index.html')
-rw-r--r-- | writing/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/writing/index.html b/writing/index.html index feee3c1..45c8c6f 100644 --- a/writing/index.html +++ b/writing/index.html @@ -4,8 +4,8 @@ title: Ben Burwell’s Writing description: A small collection of writing I’ve done on various topics over the years. --- -{% for post in site.categories.writing %} - <section class="writing"> +<section class="writing"> + {% for post in site.categories.writing %} <h1><a href="{{ post.url }}">{{ post.title }}</a></h1> - </section> -{% endfor %} + {% endfor %} +</section> |