{% macro section(sectionName, title, sectionContent, path = global.path, imageSrc, imageMobileSrc, imageAlt, showBuyNowButton, showCart) %}

{{title}}

{% for content in sectionContent %}

{{content.paragraph}} {% if content.contentType_options.selected == 'isQuote' and content.quoteAuthor != '' %} {{content.quoteAuthor}} {% endif %}

{% if content.hasImageAfter == 'true' %} {% from "../_image/_image.html" import image %} {{ image( sectionName = sectionName, path = global.path, imageSrc = imageSrc, imageMobileSrc = imageMobileSrc, imageAlt = imageAlt ) }} {% endif %} {% if content.hasAboutProductAfter == 'true' %} {% include "../aboutProductBanner/aboutProductBanner.html" %} {% endif %} {% endfor %} {% if showBuyNowButton == 'true' %} {% from "../_CTABtn/_CTABtn.html" import CTA %} {{ CTA( wrapCTA = 'true', ctaID = '', ctaLink = '', ctaTarget = '', dataParam = 'false', ctaParam = 'false', ctaText = 'BUY NOW', ctaClass = 'scrollTo', hasIcon = '', hideCta = '', bgColor = vslSection.cta.bgColor_options.selected ) }} {% endif %} {% if showCart == 'true' %} {% include "../cartSingleProduct/cartSingleProduct.html" %} {% endif %} {% endmacro %}