---
layout: default
---
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
{% include page__hero.html %}
{% elsif page.header.video.id and page.header.video.provider %}
{% include page__hero_video.html %}
{% endif %}
{% if page.url != "/" and site.breadcrumbs %}
{% unless paginator %}
{% include breadcrumbs.html %}
{% endunless %}
{% endif %}
{% include sidebar.html %}
{% if page.title %}{% endif %}
{% if page.excerpt %}{% endif %}
{% if page.date %}{% endif %}
{% if page.last_modified_at %}{% endif %}
{% unless page.header.overlay_color or page.header.overlay_image %}
{% endunless %}
{% if page.toc %}
{% endif %}
{{ content }}
{% if page.link %}{% endif %}
{% if site.comments.provider and page.comments %}
{% include comments.html %}
{% endif %}
{% comment %}{% endcomment %}
{% if page.related %}
{% assign n_posts = 0 %}
{% for post in site.posts %}
{% if post.id == page.id %}{% continue %}{% endif %}
{% for this_category in page.categories %}
{% if post.categories contains this_category %}
{% if n_posts == 0 %}
{% if site.data.ui-text[site.locale].related_label %}
{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}
{% endif %}
{% endif %}
{% include archive-single.html type="grid" %}
{% assign n_posts = n_posts | plus: 1 %}
{% break %}
{% endif %}
{% endfor %}
{% if n_posts > 3 %}{% break %}{% endif %}
{% endfor %}
{% if n_posts > 0 %}
{% endif %}
{% endif %}