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-10 11:13:54 -05:00
< article class = "page" itemscope itemtype = "http://schema.org/CreativeWork" >
2016-02-24 16:10:45 -05:00
{% if page.excerpt %}< meta itemprop = "description" content = "{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}" > {% endif %}
2016-02-22 22:46:59 -05:00
{% 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-04 12:37:24 -05:00
2016-03-10 13:06:59 -05:00
< div class = "page__inner-wrap" >
2016-02-22 22:46:59 -05:00
< header >
2016-03-10 13:06:59 -05:00
< h1 class = "page__title" itemprop = "headline" > {{ page.title | markdownify | remove: "< p > " | remove: "< / p > " }}< / h1 >
2016-03-22 22:28:12 -04:00
{% 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 %}
2016-02-22 22:46:59 -05:00
< / header >
2016-02-22 22:32:17 -05:00
2016-03-10 13:06:59 -05:00
< section class = "page__content" itemprop = "text" >
2016-03-05 22:11:00 -05:00
{{ content }}
2016-03-10 11:13:54 -05:00
{% if page.link %}< div > < a href = "{{ page.link }}" class = "btn" > {{ site.data.ui-text[site.locale].ext_link_label }}< / a > < / div > {% endif %}
2016-02-22 22:46:59 -05:00
< / section >
2016-02-22 22:32:17 -05:00
2016-03-10 21:53:28 -05:00
< footer class = "page__meta" >
2016-03-11 15:55:06 -05:00
{% if site.data.ui-text[site.locale].meta_label %}
< h4 class = "page__meta-title" > {{ site.data.ui-text[site.locale].meta_label }}< / h4 >
{% endif %}
2016-03-10 21:53:28 -05:00
{% include page__taxonomy.html %}
2016-03-09 16:33:27 -05:00
{% if page.modified %}
2016-03-10 21:53:28 -05:00
< p class = "page__date" > < strong > {{ 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-09 16:33:27 -05:00
{% elsif page.date %}
2016-03-10 21:53:28 -05:00
< p class = "page__date" > < strong > {{ 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-02-22 22:32:17 -05:00
{% endif %}
2016-02-22 16:46:49 -05:00
< / footer >
2016-03-19 21:50:18 -04:00
{% if site.share and page.share %}{% include social-share.html %}{% endif %}
2016-03-11 15:55:06 -05:00
< / div >
2013-05-24 10:25:31 -04:00
2016-03-07 11:29:35 -05:00
{% if site.comments.provider and page.comments %}
2016-03-17 22:55:13 -04:00
< h4 class = "page__comments-title" > {{ site.data.ui-text[site.locale].comments_label }}< / h4 >
2016-03-07 11:29:35 -05:00
{% case site.comments.provider %}
{% when "disqus" %}
< section id = "disqus_thread" > < / section >
{% when "facebook" %}
< section class = "fb-comments" data-href = "{{ base_path }}{{ page.url }}" data-num-posts = "{{ site.comments.facebook.num_posts | default: 5 }}" data-width = "{{ site.comments.facebook.width | default: 580 }}" data-colorscheme = "{{ site.comments.facebook.colorscheme | default: 'light' }}" > < / section >
{% when "google-plus" %}
< section class = "g-comments" data-href = "{{ base_path }}{{ page.url }}" data-first_party_property = "BLOGGER" data-view_type = "FILTERED_POSTMOD" > Loading Google+ Comments ...< / section >
{% when "custom" %}
< section id = "comments" > < / section >
{% endcase %}
2014-03-25 17:25:21 +01:00
{% endif %}
2016-02-22 16:46:49 -05:00
< / article >
2013-05-24 10:25:31 -04:00
2016-03-04 12:37:24 -05:00
{% comment %}<!-- only show related on a post page when not disabled --> {% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
2016-03-11 15:55:06 -05:00
< div class = "page__related" >
2016-03-18 15:07:02 -04:00
{% 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 %}
2016-03-19 20:58:17 -04:00
{% include archive-single.html type="grid" %}
2016-03-18 15:07:02 -04:00
{% endfor %}
< / div >
2016-03-11 15:55:06 -05:00
< / div >
2016-02-22 16:46:49 -05:00
{% endif %}