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

26 lines
731 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
---
2015-09-10 01:59:20 +00:00
{% block content %}
2019-03-06 21:57:32 +00:00
<header class="spaced-y-4 mb-6">
<p class="text-lg">Everything I've ever published on my site, in reverse chronological order.</p>
<p class="text-lg">You can also subscribe via <a href="/feed">the RSS feed</a>.</p>
2019-03-06 21:21:16 +00:00
</header>
<div class="-mx-4 spaced-y-4">
2018-12-31 12:15:23 +00:00
{% for post in data.posts %}
2019-03-21 09:38:09 +00:00
<article class="p-4 {{ post.draft ? 'bg-blue-200' }}">
2019-03-07 02:46:46 +00:00
{% include 'blog/post-summary' with {
show_date: true,
} %}
2019-01-15 22:21:35 +00:00
</article>
2016-09-01 07:00:21 +00:00
{% endfor %}
2019-01-15 22:21:35 +00:00
</div>
2015-09-10 01:59:20 +00:00
{% endblock %}
2018-06-04 20:57:13 +00:00
{% block scripts %}
<script>hljs.initHighlightingOnLoad();</script>
{% endblock %}