2016-02-22 22:46:49 +01:00
---
layout: default
---
2016-03-07 16:27:07 +01:00
{% include base_path %}
2016-02-23 03:22:07 +01:00
2016-03-24 02:50:22 +01:00
{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
2016-03-23 17:56:23 +01:00
{% include page__hero.html %}
{% endif %}
2016-03-04 18:37:24 +01:00
2016-03-23 17:56:23 +01:00
{% if page.url != "/" and site.breadcrumbs and site.categories.type == "jekyll-archives" %}
{% include breadcrumbs.html %}
{% endif %}
2016-02-23 04:32:17 +01:00
2016-03-23 17:56:23 +01:00
< div id = "main" role = "main" >
{% include sidebar.html %}
2016-02-23 04:32:17 +01:00
2016-03-23 17:56:23 +01:00
< article class = "page" itemscope itemtype = "http://schema.org/CreativeWork" >
2016-03-24 02:50:22 +01:00
{% if page.title %}< meta itemprop = "headline" content = "{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}" > {% endif %}
2016-03-23 17:56:23 +01: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-20 02:50:18 +01:00
2016-03-23 17:56:23 +01:00
< div class = "page__inner-wrap" >
2016-03-24 02:50:22 +01: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 16:25:31 +02:00
2016-03-23 17:56:23 +01: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 16:25:31 +02:00
2016-03-23 17:56:23 +01: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-04 03:35:53 +02: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 17:56:23 +01:00
{% elsif page.date %}
2016-04-04 03:35:53 +02: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 17:56:23 +01:00
{% endif %}
< / footer >
{% if site.share and page.share %}{% include social-share.html %}{% endif %}
2016-03-30 05:13:00 +02:00
{% include post_pagination.html %}
2016-03-23 17:56:23 +01:00
< / div >
{% if site.comments.provider and page.comments %}
{% include comments.html %}
2016-03-18 20:07:02 +01:00
{% endif %}
2016-03-23 17:56:23 +01: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 20:07:02 +01:00
< / div >
2016-03-23 17:56:23 +01:00
{% endif %}
< / div >