2015-03-16 11:16:42 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Blog
|
2015-06-15 08:37:37 +00:00
|
|
|
generator: pagination
|
2015-06-15 08:38:09 +00:00
|
|
|
pagination:
|
2015-08-09 23:14:36 +00:00
|
|
|
max_per_page: 10
|
2016-12-29 16:32:52 +00:00
|
|
|
use: [posts]
|
2015-03-16 11:16:42 +00:00
|
|
|
---
|
2015-09-10 01:59:20 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>Blog</h1>
|
2015-06-18 16:50:37 +00:00
|
|
|
|
2018-05-21 22:16:08 +00:00
|
|
|
<ul class="list-reset">
|
2016-09-01 07:00:21 +00:00
|
|
|
{% for post in page.pagination.items %}
|
2018-05-21 22:16:08 +00:00
|
|
|
<li class="mb-12">
|
|
|
|
<h2 class="text-xl mb-1">
|
|
|
|
<a href="{{ post.url }}" class="no-underline hover:underline focus:underline text-black hover:text-grey-darker focus:text-grey-darker">
|
|
|
|
{{ post.title }}
|
|
|
|
</a>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<p class="text-grey-dark mb-2">{{ post.date|date('j F Y') }}</p>
|
|
|
|
</div>
|
2015-03-16 11:16:42 +00:00
|
|
|
|
2017-08-06 18:31:59 +00:00
|
|
|
{% include 'post/intro-image' with { page: post } %}
|
|
|
|
|
2018-06-02 11:45:57 +00:00
|
|
|
<div class="markdown mb-4">
|
2018-06-04 20:46:35 +00:00
|
|
|
{% if post.summary %}
|
|
|
|
{{ post.summary|markdown }}
|
|
|
|
<div>
|
|
|
|
<a
|
|
|
|
class="button text-grey-darker rounded-lg border border-grey-light bg-grey-lightest no-underline hover:underline focus:underline"
|
|
|
|
href="{{ post.url }}"
|
|
|
|
>
|
|
|
|
Continue reading <span class="element-invisible">about {{ post.title }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% elseif post.blocks.excerpt %}
|
2018-03-01 07:27:33 +00:00
|
|
|
{{ post.blocks.excerpt|markdown }}
|
2018-06-04 20:46:35 +00:00
|
|
|
<div>
|
|
|
|
<a
|
|
|
|
class="button text-grey-darker rounded-lg border border-grey-light bg-grey-lightest no-underline hover:underline focus:underline"
|
|
|
|
href="{{ post.url }}"
|
|
|
|
>
|
|
|
|
Continue reading <span class="element-invisible">about {{ post.title }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-03-01 07:27:33 +00:00
|
|
|
{% else %}
|
|
|
|
{{ post.blocks.content|markdown }}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2016-09-01 07:00:21 +00:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2015-09-10 01:59:20 +00:00
|
|
|
</ul>
|
2015-07-21 17:03:01 +00:00
|
|
|
|
2018-06-03 11:05:03 +00:00
|
|
|
{% include 'post-pager.html.twig' %}
|
2015-09-10 01:59:20 +00:00
|
|
|
{% endblock %}
|