---
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 page.share %}{% include social-share.html %}{% endif %}
{% if site.data.ui-text[site.locale].meta_label %}
{{ site.data.ui-text[site.locale].meta_label }}
{% endif %}
{% include page__taxonomy.html %}
{% if page.last_modified_at %}
{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }} {{ page.last_modified_at | date: "%B %d, %Y" }}
{% elsif page.date %}
{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }} {{ page.date | date: "%B %d, %Y" }}
{% endif %}
{% if site.comments.provider and page.comments %}
{% include comments.html %}
{% endif %}
{% comment %}{% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
{% comment %}{% endcomment %}
{% elsif page.id and page.related %}
{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}
{% for post in site.posts limit:4 %}
{% if post.id == page.id %}
{% continue %}
{% endif %}
{% include archive-single.html type="grid" %}
{% endfor %}
{% endif %}