Use article tags

This commit is contained in:
Oliver Davies 2019-01-15 22:21:35 +00:00
parent 083c20a03c
commit 1052c41d97
2 changed files with 11 additions and 11 deletions

View file

@ -10,13 +10,13 @@ use: [posts]
{% endblock %}
{% block content %}
<ul class="list-reset -mt-4 -mx-4 spaced-y-4">
<div class="-mt-4 -mx-4 spaced-y-4">
{% for post in data.posts %}
<li class="p-4 {{ post.draft ? 'bg-blue-lighter' }}">
<article class="p-4 {{ post.draft ? 'bg-blue-lighter' }}">
{% include 'blog/post-summary' %}
</li>
</article>
{% endfor %}
</ul>
</div>
{% endblock %}
{% block scripts %}

View file

@ -4,20 +4,20 @@ title: Articles
use: [posts]
---
<div class="spaced-y-10">
<div class="text-lg spaced-y-4">
<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>
</div>
</header>
<div class="spaced-y-10">
<div class="spaced-y-12">
{% for post in data.posts if post.promoted %}
<div>
<article>
{% include 'blog/post-summary' %}
</div>
</article>
{% endfor %}
</div>
<div class="markup">
<footer class="markup">
<p>Read the rest of my articles in the <a href="/articles/archive">archives</a>.</p>
</div>
</footer>
</div>