{% for component in componentData %}{% try %}{% if component is defined and component is iterable %}{% if component.component == 'widget-reference' and componentConfig is defined %}{% set config = {componentConfig: componentConfig} %}{% elseif componentConfig[component.component] is defined %}{% set config = componentConfig[component.component] %}{% endif %}{% set innerHtml %}{{ render_storyblok(component, config|default([])) }}{% endset %}{% if component.inContainer is defined and component.inContainer == true %}<div class="grid"><div class="grid__column grid__column-12">{{ innerHtml }}</div></div>{% else %}{{ innerHtml }}{% endif %}{% endif %}{% catch %}{{ logException(e) }}{% endcatch %}{% endfor %}