Show date on archive page

This commit is contained in:
Oliver Davies 2019-03-07 02:46:46 +00:00
parent d595d425cd
commit d5028b9110
2 changed files with 8 additions and 2 deletions

View file

@ -1,8 +1,12 @@
<div class="spaced-y-1"> <div class="spaced-y-1">
<div> <div class="spaced-y-px">
<h2 class="text-inherit text-lg m-0"> <h2 class="text-inherit text-lg m-0">
{{ post.draft ? 'Draft: '|upper }}{{ post.title }} {{ post.draft ? 'Draft: '|upper }}{{ post.title }}
</h2> </h2>
{% if show_date %}
<time class="text-sm mb-1 block" datetime="{{ post.date|date('Y-m-d') }}">{{ post.date|date('jS F Y') }}</time>
{% endif %}
</div> </div>
<div> <div>

View file

@ -18,7 +18,9 @@ use: [posts]
<div class="-mx-4 spaced-y-4"> <div class="-mx-4 spaced-y-4">
{% for post in data.posts %} {% for post in data.posts %}
<article class="p-4 {{ post.draft ? 'bg-blue-lighter' }}"> <article class="p-4 {{ post.draft ? 'bg-blue-lighter' }}">
{% include 'blog/post-summary' %} {% include 'blog/post-summary' with {
show_date: true,
} %}
</article> </article>
{% endfor %} {% endfor %}
</div> </div>