From d1411452fb83d6408f77ca24957f93c7ca205993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A1=A9=E5=B4=8E=E5=81=A5=E5=BC=98?= Date: Mon, 3 Jul 2017 20:39:24 +0900 Subject: [PATCH] delete unneccessary indent --- Liquid-for-Designers.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Liquid-for-Designers.md b/Liquid-for-Designers.md index 6c91030..73053b3 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -442,12 +442,12 @@ Reversing the loop: A for loop can take an optional `else` clause to display a block of text when there are no items in the collection: ```liquid - # items => [] - {% for item in items %} - {{ item.title }} - {% else %} - There are no items! - {% endfor %} +# items => [] +{% for item in items %} + {{ item.title }} +{% else %} + There are no items! +{% endfor %} ``` ### Variable Assignment