---
layout: default
---
{% for component in site.data.components %}
{% assign component_include = 'theme/' | append: component | append: '.html' %}
{% assign title = component | replace: '_', ' ' | capitalize %}
{% assign id = component | replace: '_', '-' %}
{% render component_include, data: site.data, locale: site.locale, i18n: site.i18n, cache: false %}
{% endfor %}
{% for component in site.data.full_width_components %}
{% assign component_include = 'theme/' | append: component | append: '.html' %}
{% assign title = component | replace: '_', ' ' | capitalize %}
{% assign id = component | replace: '_', '-' %}
{% render component_include, data: site.data, locale: site.locale, i18n: site.i18n, cache: false %}
{% endfor %}