oliverdavies.uk/source/articles/index.html.twig
2019-03-09 22:45:55 +00:00

24 lines
709 B
Twig

---
layout: default
title: Articles
use: [posts]
---
<div class="spaced-y-10">
<header class="text-lg spaced-y-4">
<p>I enjoy writing articles, and have written a number of them so far during my career, both to document my own learning as well to act as resources for others.</p>
<p>Here are some of my favourites.</p>
</header>
<div class="spaced-y-12">
{% for post in data.posts if post.promoted %}
<article>
{% include 'blog/post-summary' %}
</article>
{% endfor %}
</div>
<footer>
<p class="text-lg">Read the rest of my articles in the <a href="/articles/archive">archives</a>.</p>
</footer>
</div>