+ {%- if section.section_intro -%}
+
+
{{ section.section_intro }}
+ {%- endif -%}
+
+ {%- if section.section_type == 'List' -%}
+ {%- for element in section.elements -%}
+ {{ render_element(element) }}
+ {%- endfor -%}
+
+ {%- elif section.section_type == 'Grid' -%}
+
+ {%- for element in section.elements -%}
+
+ {{ render_element(element) }}
+
+ {%- endfor -%}
+
+
+ {%- elif section.section_type == 'Tabbed' -%}
+
+
+ {%- for element in section.elements -%}
+
+ {{ render_element(element) }}
+
+ {%- endfor -%}
+
+
+ {%- endif -%}
+
+