2016-02-22 22:46:49 +01:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
2016-02-23 03:22:07 +01:00
|
|
|
{% include absolute-url.liquid %}
|
|
|
|
|
2016-02-23 03:44:55 +01:00
|
|
|
<div class="archive">
|
2016-02-22 22:46:49 +01:00
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{% capture written_year %}'None'{% endcapture %}
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
|
|
{% if year != written_year %}
|
|
|
|
<h3>{{ year }}</h3>
|
|
|
|
{% capture written_year %}{{ year }}{% endcapture %}
|
2014-03-11 00:42:54 +01:00
|
|
|
{% endif %}
|
2016-02-22 22:46:49 +01:00
|
|
|
<article>
|
|
|
|
{% if post.link %}
|
|
|
|
<h2 class="link-post"><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h2>
|
|
|
|
{% else %}
|
|
|
|
<h2><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
|
2016-02-23 03:22:07 +01:00
|
|
|
<p>{{ post.excerpt | remove: '\[ ... \]' | remove: '\( ... \)' | markdownify | strip_html | strip_newlines | escape_once }}</p>
|
2015-08-06 04:23:00 +02:00
|
|
|
{% endif %}
|
2016-02-22 22:46:49 +01:00
|
|
|
</article>
|
|
|
|
{% endfor %}
|
2016-02-23 03:44:55 +01:00
|
|
|
</div><!-- /.archive -->
|