hacks-guide-minimal-mistake.../_layouts/archive.html

25 lines
1 KiB
HTML
Raw Normal View History

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-23 04:46:59 +01:00
<article itemscope itemtype="http://schema.org/CreativeWork">
2016-02-22 22:46:49 +01:00
{% if post.link %}
2016-02-23 04:46:59 +01:00
<h2 class="link-post" itemprop="headline"><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>
2016-02-22 22:46:49 +01:00
{% else %}
2016-02-23 04:46:59 +01:00
<h2 itemprop="headline"><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
2016-02-24 22:10:45 +01:00
<p itemprop="description">{{ post.excerpt | markdownify | strip_html | strip_newlines | escape_once }}</p>
{% endif %}
2016-02-22 22:46:49 +01:00
</article>
{% endfor %}
2016-02-23 03:44:55 +01:00
</div><!-- /.archive -->