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/index.html.twig

24 lines
708 B
Twig
Raw Normal View History

2019-01-15 08:35:49 +00:00
---
layout: default
title: Articles
use: [posts]
---
<div class="spaced-y-10">
2019-01-15 22:21:35 +00:00
<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>
2019-01-15 22:21:35 +00:00
</header>
2019-01-15 22:21:35 +00:00
<div class="spaced-y-12">
{% for post in data.posts if post.promoted %}
2019-01-15 22:21:35 +00:00
<article>
{% include 'blog/post-summary' %}
2019-01-15 22:21:35 +00:00
</article>
{% endfor %}
</div>
2019-01-15 08:35:49 +00:00
2019-01-15 22:21:35 +00:00
<footer class="markup">
<p>Read the rest of my articles in the <a href="/articles/archive">archives</a>.</p>
2019-01-15 22:21:35 +00:00
</footer>
2019-01-15 08:35:49 +00:00
</div>