oliverdavies.uk/source/blog.html

30 lines
671 B
HTML
Raw Normal View History

2015-03-16 11:16:42 +00:00
---
2018-10-06 00:23:35 +01:00
layout: default
2015-03-16 11:16:42 +00:00
title: Blog
2015-06-15 09:37:37 +01:00
generator: pagination
2015-06-15 09:38:09 +01:00
pagination:
2015-08-10 00:14:36 +01: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 02:59:20 +01:00
{% block content %}
2018-05-21 23:16:08 +01:00
<ul class="list-reset">
2016-09-01 08:00:21 +01:00
{% for post in page.pagination.items %}
2018-05-21 23:16:08 +01:00
<li class="mb-12">
2018-12-29 21:46:34 +00:00
<h2 class="text-2xl mb-2">{{ post.title }}</h2>
2018-05-21 23:16:08 +01:00
2017-08-06 19:31:59 +01:00
{% include 'post/intro-image' with { page: post } %}
2018-06-02 12:45:57 +01:00
<div class="markdown mb-4">
2018-09-04 21:04:25 +01:00
{% include 'pages/blog/teaser' %}
2018-03-01 07:27:33 +00:00
</div>
2016-09-01 08:00:21 +01:00
</li>
{% endfor %}
2015-09-10 02:59:20 +01:00
</ul>
2015-07-21 18:03:01 +01:00
2018-06-21 01:12:16 +01:00
{% include 'post-pager' %}
2015-09-10 02:59:20 +01:00
{% endblock %}
2018-06-04 21:57:13 +01:00
{% block scripts %}
<script>hljs.initHighlightingOnLoad();</script>
{% endblock %}