templates\parts\_footer-wrapper-styles.html.twig line 1

Open in your IDE?
  1. {% if footer[footerType][1] is defined and footer[footerType][1][0] is defined %}    
  2. background-color: 
  3.     {% if footer[footerType][1][0]["css-footerType-background-color"] is not empty %}
  4.         {{footer[footerType][1][0]["css-footerType-background-color"]}}
  5.     {% else %} 
  6.         inherit
  7.     {% endif %};
  8.     
  9. color:
  10.     {% if footer[footerType][1][0]["css-footerType-color"] is not empty %}         
  11.         {{footer[footerType][1][0]["css-footerType-color"]}}
  12.     {% else %} 
  13.         inherit
  14.     {% endif %};    
  15. {% endif %}