From eafceddce373f9ff07c0aa5ad702d517b9d2c9ea Mon Sep 17 00:00:00 2001
From: bcanini <canini.16@osu.edu>
Date: Fri, 22 Mar 2019 16:21:17 -0400
Subject: [PATCH] asc_bootstrap - removing if statement wrapping container (if
 statement no longer needed)

---
 .../templates/field/field--field-short-description.html.twig  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/web/themes/asc_bootstrap/templates/field/field--field-short-description.html.twig b/web/themes/asc_bootstrap/templates/field/field--field-short-description.html.twig
index 27c492dde0..d5e750adda 100644
--- a/web/themes/asc_bootstrap/templates/field/field--field-short-description.html.twig
+++ b/web/themes/asc_bootstrap/templates/field/field--field-short-description.html.twig
@@ -37,7 +37,7 @@
  */
 #}
   {% for item in items %}
-    {% if is_front %}<div class="container">{% endif %}
+    <div class="container">
       <div id="sht-desc" class="col-xs-12">
 
     <!-- Indicators -->
@@ -45,5 +45,5 @@
           {{ item.content }}
         </h2>
       </div>
-    {% if is_front %}</div>{% endif %}
+    </div>
   {% endfor %}
-- 
GitLab