From 3e2e7daa5151ab1cf14bc4d7681a59dcc437de5b Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 1 Aug 2016 10:27:54 -0400 Subject: [PATCH] Fix blank `site.teaser` bug - Use `assign` instead of capture and then check if variable is `nil` or not. - Close #412 --- _includes/archive-single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/archive-single.html b/_includes/archive-single.html index 6b5eb494..e904447f 100644 --- a/_includes/archive-single.html +++ b/_includes/archive-single.html @@ -3,7 +3,7 @@ {% if post.header.teaser %} {% capture teaser %}{{ post.header.teaser }}{% endcapture %} {% else %} - {% capture teaser %}{{ site.teaser }}{% endcapture %} + {% assign teaser = site.teaser %} {% endif %} {% if post.id %} @@ -14,7 +14,7 @@
- {% if include.type == "grid" and teaser != blank %} + {% if include.type == "grid" and teaser %}