2013-05-24 16:25:31 +02: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>
|
2013-12-09 15:16:56 +01:00
|
|
|
{% include _head.html %}
|
2013-05-24 16:25:31 +02:00
|
|
|
</head>
|
|
|
|
|
2014-01-15 21:09:59 +01:00
|
|
|
<body class="post-index">
|
2013-05-24 16:25:31 +02:00
|
|
|
|
2013-12-09 15:16:56 +01:00
|
|
|
{% include _browser-upgrade.html %}
|
2013-05-24 16:25:31 +02:00
|
|
|
|
2013-12-09 15:16:56 +01:00
|
|
|
{% include _navigation.html %}
|
2013-05-24 16:25:31 +02:00
|
|
|
|
2014-03-11 00:42:54 +01:00
|
|
|
{% if page.image.feature %}
|
|
|
|
<div class="image-wrap">
|
|
|
|
<img src=
|
2014-07-31 15:37:41 +02:00
|
|
|
{% if page.image.feature contains 'http' %}
|
2014-03-11 00:42:54 +01:00
|
|
|
"{{ page.image.feature }}"
|
|
|
|
{% else %}
|
|
|
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
|
|
|
{% endif %}
|
|
|
|
alt="{{ page.title }} feature image">
|
|
|
|
{% if page.image.credit %}
|
|
|
|
<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
|
|
|
|
{% endif %}
|
|
|
|
</div><!-- /.image-wrap -->
|
|
|
|
{% endif %}
|
2013-05-24 16:25:31 +02:00
|
|
|
|
2013-12-09 15:19:05 +01:00
|
|
|
<div class="article-author-side">
|
2013-12-09 15:16:56 +01:00
|
|
|
{% include _author-bio.html %}
|
2013-05-24 16:25:31 +02:00
|
|
|
</div>
|
|
|
|
|
2014-01-15 21:09:59 +01:00
|
|
|
<div id="index">
|
|
|
|
<h1>{{ page.title }}</h1>
|
2013-05-24 16:25:31 +02:00
|
|
|
{% for post in site.posts %}
|
2013-06-04 18:00:06 +02:00
|
|
|
{% unless post.next %}
|
|
|
|
<h3>{{ post.date | date: '%Y' }}</h3>
|
|
|
|
{% else %}
|
|
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
|
|
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
|
|
|
|
{% if year != nyear %}
|
|
|
|
<h3>{{ post.date | date: '%Y' }}</h3>
|
|
|
|
{% endif %}
|
|
|
|
{% endunless %}
|
2014-01-15 21:09:59 +01:00
|
|
|
<article>
|
2014-03-25 18:55:34 +01:00
|
|
|
{% if post.link %}
|
2014-07-12 11:25:43 +02:00
|
|
|
<h2 class="link-post"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></h2>
|
2014-03-25 18:55:34 +01:00
|
|
|
{% else %}
|
|
|
|
<h2><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
|
2014-07-31 15:37:41 +02:00
|
|
|
<p>{{ post.excerpt | strip_html | truncate: 160 }}</p>
|
2014-03-25 18:55:34 +01:00
|
|
|
{% endif %}
|
2013-06-04 18:00:06 +02:00
|
|
|
</article>
|
2013-05-24 16:25:31 +02:00
|
|
|
{% endfor %}
|
|
|
|
</div><!-- /#index -->
|
|
|
|
|
|
|
|
<div class="footer-wrap">
|
|
|
|
<footer>
|
2013-12-09 15:16:56 +01:00
|
|
|
{% include _footer.html %}
|
2013-05-24 16:25:31 +02:00
|
|
|
</footer>
|
|
|
|
</div><!-- /.footer-wrap -->
|
|
|
|
|
2013-12-09 15:16:56 +01:00
|
|
|
{% include _scripts.html %}
|
2013-05-24 16:25:31 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|