26 lines
629 B
HTML
26 lines
629 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% if header.overlay_color or header.overlay_image or header.image %}
|
|
{% include page__hero.html %}
|
|
{% elsif header.video.id and header.video.provider %}
|
|
{% include page__hero_video.html %}
|
|
{% endif %}
|
|
|
|
{% if page.url != "/" and site.breadcrumbs %}
|
|
{% unless paginator %}
|
|
{% include breadcrumbs.html %}
|
|
{% endunless %}
|
|
{% endif %}
|
|
|
|
<div id="main" role="main">
|
|
{% include sidebar.html %}
|
|
|
|
<div class="archive">
|
|
{% unless header.overlay_color or header.overlay_image %}
|
|
<h1 id="page-title" class="page__title">{{ title }}</h1>
|
|
{% endunless %}
|
|
{{ content }}
|
|
</div>
|
|
</div> |