{% include head.html %}
{% include header.html %}
{% assign sections = site.sections | where_exp: 'section','section.order >= 1' %} {% if page.permalink %} {% assign sections = sections | push: page %} {% endif %} {% unless sections == null %} {% assign sections = sections | sort: 'order' %} {% for section in sections %} {% assign title = section.title | default: 'Untitled' %} {% assign slug = section.title | slugify | default: 'untitled' %} {% if section.order == 1 %} {% assign class = 'shade-one cover dark' %} {% else %} {% capture class %} shade-{% cycle 'two', 'three', 'four', 'three' %} {% endcapture %} {% endif %} {% if section.auto-header == 'none' %} {% assign heading = "" %} {% elsif section.auto-header == null or section.auto-header == 'use-title' %} {% capture heading %}
{{ title }}
{% endcapture %} {% else %} {% capture heading %}
{{ section.auto-header }}
{% endcapture %} {% endif %} {% include section.html id=slug class=class heading=heading content=section.content %} {% endfor %} {% endunless %}
{% include footer.html %}