From 9ecf26af733937377b7f751c41459c8648cd81a9 Mon Sep 17 00:00:00 2001 From: lrdodge Date: Sun, 19 Jun 2016 19:09:43 -0500 Subject: [PATCH] Change order of post excerpt processing --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 9bb92a7..9893958 100644 --- a/index.html +++ b/index.html @@ -9,23 +9,23 @@ subtitle: This is where I will tell my friends way too much about me

{{ post.title }}

- + {% if post.subtitle %}

{{ post.subtitle }}

- {% endif %} + {% endif %}
- +
- {{ post.content | truncatewords: 50 | strip_html | xml_escape}} + {{ post.content | strip_html | xml_escape | truncatewords: 50 }} [Read More]
- +
{% endfor %}