---
layout: default
---
{% capture components %}
{% for component in site.data.components %}
{% assign component_include = "theme/" | append: component | append: ".html" %}
{% assign title = component | replace: "_", " " | capitalize %}
{% include headings/with_link.html level=1 text=title %}
{% include {{ component_include }} %}
{% endfor %}
{% endcapture %}
{% capture full_width_components %}
{% for component in site.data.full_width_components %}
{% assign component_include = "theme/" | append: component | append: ".html" %}
{% assign title = component | replace: "_", " " | capitalize %}
{% include headings/with_link.html level=1 text=title %}
{% include {{ component_include }} %}
{% endfor %}
{% endcapture %}
{{ full_width_components }}