2016-02-22 16:46:49 -05:00
---
layout: default
---
2016-03-07 10:27:07 -05:00
{% include base_path %}
2016-02-22 21:22:07 -05:00
2016-03-23 21:50:22 -04:00
{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
2016-03-23 12:56:23 -04:00
{% include page__hero.html %}
{% endif %}
2016-03-04 12:37:24 -05:00
2016-03-23 12:56:23 -04:00
{% if page.url != "/" and site.breadcrumbs and site.categories.type == "jekyll-archives" %}
{% include breadcrumbs.html %}
{% endif %}
2016-02-22 22:32:17 -05:00
2016-03-23 12:56:23 -04:00
< div id = "main" role = "main" >
{% include sidebar.html %}
2016-02-22 22:32:17 -05:00
2016-03-23 12:56:23 -04:00
< article class = "page" itemscope itemtype = "http://schema.org/CreativeWork" >
2016-03-23 21:50:22 -04:00
{% if page.title %}< meta itemprop = "headline" content = "{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}" > {% endif %}
2016-03-23 12:56:23 -04:00
{% if page.excerpt %}< meta itemprop = "description" content = "{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}" > {% endif %}
{% if page.date %}< meta itemprop = "datePublished" content = "{{ page.date | date: " % B % d , % Y " } } " > {% endif %}
{% if page.modified %}< meta itemprop = "dateModified" content = "{{ page.modified | date: " % B % d , % Y " } } " > {% endif %}
2016-03-19 21:50:18 -04:00
2016-03-23 12:56:23 -04:00
< div class = "page__inner-wrap" >
2016-03-23 21:50:22 -04:00
{% unless page.header.overlay_color or page.header.overlay_image %}
< header >
< h1 class = "page__title" itemprop = "headline" > {{ page.title | markdownify | remove: "< p > " | remove: "< / p > " }}< / h1 >
{% if site.read_time and page.read_time %}< p class = "page__meta" > < i class = "fa fa-clock-o" aria-hidden = "true" > < / i > {% include read-time.html %}< / p > {% endif %}
< / header >
{% endunless %}
2013-05-24 10:25:31 -04:00
2016-03-23 12:56:23 -04:00
< section class = "page__content" itemprop = "text" >
{{ content }}
{% if page.link %}< div > < a href = "{{ page.link }}" class = "btn" > {{ site.data.ui-text[site.locale].ext_link_label }}< / a > < / div > {% endif %}
< / section >
2013-05-24 10:25:31 -04:00
2016-03-23 12:56:23 -04:00
< footer class = "page__meta" >
{% if site.data.ui-text[site.locale].meta_label %}
< h4 class = "page__meta-title" > {{ site.data.ui-text[site.locale].meta_label }}< / h4 >
{% endif %}
{% include page__taxonomy.html %}
{% if page.modified %}
2016-04-03 21:35:53 -04:00
< p class = "page__date" > < strong > < i class = "fa fa-fw fa-calendar" aria-hidden = "true" > < / i > {{ site.data.ui-text[site.locale].date_label }}< / strong > < time datetime = "{{ page.modified | date: " % Y- % m- % d " } } " > {{ page.modified | date: "%B %d, %Y" }}< / time > < / p >
2016-03-23 12:56:23 -04:00
{% elsif page.date %}
2016-04-03 21:35:53 -04:00
< p class = "page__date" > < strong > < i class = "fa fa-fw fa-calendar" aria-hidden = "true" > < / i > {{ site.data.ui-text[site.locale].date_label }}< / strong > < time datetime = "{{ page.date | date_to_xmlschema }}" > {{ page.date | date: "%B %d, %Y" }}< / time > < / p >
2016-03-23 12:56:23 -04:00
{% endif %}
< / footer >
{% if site.share and page.share %}{% include social-share.html %}{% endif %}
2016-03-29 23:13:00 -04:00
{% include post_pagination.html %}
2016-03-23 12:56:23 -04:00
< / div >
{% if site.comments.provider and page.comments %}
{% include comments.html %}
2016-03-18 15:07:02 -04:00
{% endif %}
2016-03-23 12:56:23 -04:00
< / article >
{% comment %}<!-- only show related on a post page when not disabled --> {% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
< div class = "page__related" >
{% if site.data.ui-text[site.locale].related_label %}
< h4 class = "page__related-title" > {{ site.data.ui-text[site.locale].related_label }}< / h4 >
{% endif %}
< div class = "grid__wrapper" >
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
< / div >
2016-03-18 15:07:02 -04:00
< / div >
2016-03-23 12:56:23 -04:00
{% endif %}
< / div >