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
2019-01-15 21:17:04 +00:00

25 lines
582 B
Twig

---
layout: default
title: Archive
use: [posts]
---
{% block page_title_wrapper %}
<h1 class="leading-tight mb-8">
{% block page_title %}{{ page.title }}{% endblock %}
</h1>
{% endblock %}
{% block content %}
<ul class="list-reset -mt-4 -mx-4 spaced-y-4">
{% for post in data.posts %}
<li class="p-4 {{ post.draft ? 'bg-blue-lighter' }}">
{% include 'blog/post-summary' %}
</li>
{% endfor %}
</ul>
{% endblock %}
{% block scripts %}
<script>hljs.initHighlightingOnLoad();</script>
{% endblock %}