2013-06-25 20:19:49 +00:00
<!doctype html>
<!-- [if lt IE 7]><html class="no - js lt - ie9 lt - ie8 lt - ie7" lang="en"> <![endif] -->
<!-- [if (IE 7)&!(IEMobile)]><html class="no - js lt - ie9 lt - ie8" lang="en"><![endif] -->
<!-- [if (IE 8)&!(IEMobile)]><html class="no - js lt - ie9" lang="en"><![endif] -->
<!-- [if gt IE 8]><! --> < html class = "no-js" lang = "en" > <!-- <![endif] -->
< head >
{% include head.html %}
< / head >
2014-01-15 19:17:10 +00:00
< body id = "post" >
2013-06-25 20:19:49 +00:00
{% include navigation.html %}
2014-01-15 19:17:10 +00:00
< div id = "main" role = "main" >
< article class = "hentry" >
2014-01-21 13:49:07 +00:00
{% if page.image.feature %}< img src = "{{ site.url }}/images/{{ page.image.feature }}" class = "entry-feature-image" alt = "{{ page.title }}" { % if site . logo = = null % } style = "margin-top:0;" { % endif % } > {% if page.image.credit %}< p class = "image-credit" > Photo Credit: < a href = "{{ page.image.creditlink }}" > {{ page.image.credit }}< / a > {% endif %}{% endif %}
2013-06-25 20:19:49 +00:00
< div class = "entry-wrapper" >
2013-06-26 02:34:15 +00:00
< header class = "entry-header" >
2014-06-11 17:43:08 +00:00
< span class = "entry-tags" > {% for tag in page.tags %}< a href = "{{ site.url }}/tags/#{{ tag }}" title = "Pages tagged {{ tag }}" > {{ tag }}< / a > {% unless forloop.last %} • {% endunless %}{% endfor %}< / span >
2013-08-12 17:24:39 +00:00
{% if page.link %}
2014-01-15 19:17:10 +00:00
< h1 class = "entry-title" > < a href = "{{ page.link }}" > {% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %} < span class = "link-arrow" > → < / span > < / a > < / h1 >
2013-08-12 17:24:39 +00:00
{% else %}
2014-01-15 19:17:10 +00:00
< h1 class = "entry-title" > {% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}< / h1 >
2013-08-12 17:24:39 +00:00
{% endif %}
2013-06-25 20:19:49 +00:00
< / header >
< footer class = "entry-meta" >
2014-08-08 19:52:28 +00:00
{% if page.author %}
{% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.owner %}
2014-07-01 08:18:45 +00:00
{% endif %}
2014-08-08 19:52:28 +00:00
{% if author.avatar contains 'http' %}
< img src = "{{ author.avatar }}" class = "bio-photo" alt = "{{ author.name }} bio photo" > < / a >
2014-07-01 08:18:45 +00:00
{% else %}
2014-08-08 19:52:28 +00:00
< img src = "{{ site.url }}/images/{{ author.avatar }}" class = "bio-photo" alt = "{{ author.name }} bio photo" > < / a >
2014-06-19 19:34:03 +00:00
{% endif %}
2014-08-08 19:52:28 +00:00
< span class = "author vcard" > By < span class = "fn" > {{ author.name }}< / span > < / span >
2014-08-10 20:25:29 +00:00
< span class = "entry-date date published" > < time datetime = "{{ page.date | date_to_xmlschema }}" > < i class = "fa fa-calendar-o" > < / i > {{ page.date | date: "%B %d, %Y" }}< / time > < / span >
{% if page.modified %}< span class = "entry-date date modified" > < time datetime = "{{ page.modified }}" > < i class = "fa fa-pencil" > < / i > {{ page.modified | date: "%B %d, %Y" }}< / time > < / span > {% endif %}
2014-08-08 19:52:28 +00:00
{% if site.owner.disqus-shortname and page.comments == true %}< span class = "entry-comments" > < i class = "fa fa-comment-o" > < / i > < a href = "#disqus_thread" > Comment< / a > < / span > {% endif %}
2014-01-02 16:55:49 +00:00
{% if page.share %}
< span class = "social-share-twitter" >
2014-08-08 19:52:28 +00:00
< a href = "https://twitter.com/intent/tweet?hashtags={{ page.tags | join: ',' | remove: ' ' }}&text={{ page.title | escape | replace:' ','%20' }}&url={{ site.url }}{{ page.url }}{% if author.twitter %}&via={{ author.twitter }}{% endif %}" title = "Share on Twitter" itemprop = "Twitter" > < i class = "fa fa-twitter-square" > < / i > Tweet< / a >
< / span >
< span class = "social-share-facebook" >
< a href = "https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" title = "Share on Facebook" itemprop = "Facebook" > < i class = "fa fa-facebook-square" > < / i > Like< / a >
< / span >
2014-01-02 16:55:49 +00:00
< span class = "social-share-googleplus" >
2014-08-08 19:52:28 +00:00
< a href = "https://plus.google.com/share?url={{ site.url }}{{ page.url }}" title = "Share on Google Plus" itemprop = "GooglePlus" > < i class = "fa fa-google-plus-square" > < / i > +1< / a >
< / span >
2014-08-08 20:07:03 +00:00
<!-- /.social - share -->
{% endif %}
2014-09-02 20:53:10 +00:00
{% if page.ads == true %}{% include ad-sidebar.html %}<!-- /.google - ads --> {% endif %}
2013-06-25 20:19:49 +00:00
< / footer >
2014-01-15 19:17:10 +00:00
< div class = "entry-content" >
2013-06-25 20:19:49 +00:00
{{ content }}
2014-08-08 19:52:28 +00:00
< nav class = "pagination" role = "navigation" >
{% if page.previous %}
2014-08-08 20:15:24 +00:00
< a href = "{{ site.url }}{{ page.previous.url }}" class = "btn" title = "{{ page.previous.title }}" > Previous< / a >
2014-08-08 19:52:28 +00:00
{% endif %}
{% if page.next %}
2014-08-08 20:15:24 +00:00
< a href = "{{ site.url }}{{ page.next.url }}" class = "btn" title = "{{ page.next.title }}" > Next< / a >
2014-08-08 19:52:28 +00:00
{% endif %}
< / nav > <!-- /.pagination -->
{% if site.owner.disqus-shortname and page.comments == true %}< div id = "disqus_thread" > < / div > <!-- /#disqus_thread --> {% endif %}
2013-06-25 20:19:49 +00:00
< / div > <!-- /.entry - content -->
< / div > <!-- /.entry - wrapper -->
< / article >
< / div > <!-- /#main -->
< div class = "footer-wrapper" >
2014-09-03 15:46:41 +00:00
< footer role = "contentinfo" class = "entry-wrapper" >
2013-06-25 20:19:49 +00:00
{% include footer.html %}
< / footer >
< / div > <!-- /.footer - wrapper -->
{% include scripts.html %}
< / body >
< / html >