{# Set name and module #} {% set name = module %} {% set module = page[module] %} {# Get width var #} {% if module.width and module.width != 'width-default' %} {% set width = module.width %} {% elseif layout.width and layout.width != 'width-default' %} {% set width = layout.width %} {% else %} {% set width = "" %} {% endif %} {# Set columns #} {% if width == "wide" or name == "disqus" %} {% set columns = "" %} {% elseif width == "narrow" %} {% set columns = "small-12 large-10 small-centered columns" %} {% elseif width == "narrower" %} {% set columns = "small-12 medium-10 large-8 small-centered columns" %} {% elseif width == "narrowest" %} {% set columns = "small-12 medium-9 large-6 small-centered columns" %} {% else %} {% set columns = "small-12 small-centered columns" %} {% endif %} {# start row container #} {% if width == "wide" or name == "disqus" %}