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/blog.html

19 lines
420 B
HTML

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