From 02c7eae47efc11b533d3b2fd076c60154715ebfd Mon Sep 17 00:00:00 2001 From: Herst Date: Thu, 7 Sep 2017 19:11:26 +0200 Subject: [PATCH] Don't create empty columns in documentation --- docs/4.0/getting-started/options.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/4.0/getting-started/options.md b/docs/4.0/getting-started/options.md index 0b83c47f87..2547ef1adc 100644 --- a/docs/4.0/getting-started/options.md +++ b/docs/4.0/getting-started/options.md @@ -46,11 +46,11 @@ All colors available in Bootstrap 4, available as Sass variables and a Sass map
{% for color in site.data.colors %} + {% unless color.name == "white" or color.name == "gray" or color.name == "gray-dark" %}
- {% unless color.name == "white" or color.name == "gray" or color.name == "gray-dark" %}
{{ color.name | capitalize }}
- {% endunless %}
+ {% endunless %} {% endfor %}