This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/articles/archive.html.twig

25 lines
576 B
Twig
Raw Normal View History

2015-03-16 11:16:42 +00:00
---
2018-10-05 23:23:35 +00:00
layout: default
2019-01-15 08:35:49 +00:00
title: Archive
2016-12-29 16:32:52 +00:00
use: [posts]
2015-03-16 11:16:42 +00:00
---
2019-01-14 08:39:07 +00:00
{% block page_title_wrapper %}
<h1 class="leading-tight mb-8">
{% block page_title %}{{ page.title }}{% endblock %}
</h1>
{% endblock %}
2015-09-10 01:59:20 +00:00
{% block content %}
<ul class="list-reset -mt-4 -mx-4">
2018-12-31 12:15:23 +00:00
{% for post in data.posts %}
2019-01-10 00:03:02 +00:00
<li class="p-4 mb-6 {{ post.draft ? 'bg-blue-lighter' }}">
2019-01-05 00:08:45 +00:00
{% include 'blog/post-summary' %}
2016-09-01 07:00:21 +00:00
</li>
{% endfor %}
2015-09-10 01:59:20 +00:00
</ul>
{% endblock %}
2018-06-04 20:57:13 +00:00
{% block scripts %}
<script>hljs.initHighlightingOnLoad();</script>
{% endblock %}