From 86543cb33f22502c368a861f670a085e97ff6e30 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 21 Jul 2015 18:03:01 +0100 Subject: [PATCH] Ensure excerpts are in paragraphs --- source/blog.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blog.html b/source/blog.html index aa8355e5..06a3d22f 100644 --- a/source/blog.html +++ b/source/blog.html @@ -19,8 +19,9 @@ use: {% if post.blocks.excerpt %} {{ post.blocks.excerpt|raw }} {% else %} - {{ post.blocks.content|raw|split(' ')|slice(0,50)|join(' ')|raw }} … +

{{ post.blocks.content|raw|split(' ')|slice(0,50)|join(' ')|raw }} …

{% endif %} + Read more → {% endfor %}