15 lines
607 B
HTML
15 lines
607 B
HTML
---
|
|
layout: default
|
|
---
|
|
{%- assign _sections = site.sections | sort: 'order' -%}
|
|
{%- include header.html scrolly_nav=_sections -%}
|
|
<!-- Main -->
|
|
<div id="main">
|
|
{%- if page.content != "" -%}
|
|
{%- include section.html title=page.title photo=page.cover-photo photo-alt=page.cover-photo-alt auto-header=page.auto-header content=page.content -%}
|
|
{%- endif -%}
|
|
<!-- Sections -->
|
|
{%- for _section in _sections -%}
|
|
{%- include section.html title=_section.title photo=_section.cover-photo photo-alt=_section.cover-photo-alt auto-header=_section.auto-header content=_section.content -%}
|
|
{%- endfor -%}
|
|
</div> |