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/_partials/blog/post-summary.html.twig

14 lines
430 B
Twig
Raw Normal View History

<div class="markup">
2019-01-05 23:49:15 +00:00
<a href="{{ post.url }}" class="text-black focus:text-white inline-block">
2019-01-10 00:02:56 +00:00
<h2 class="text-inherit text-xl mt-0 mb-1">{{ post.draft ? 'Draft: '|upper }}{{ post.title }}</h2>
</a>
2019-01-05 00:08:45 +00:00
<p class="text-sm text-grey-dark mb-4">Posted on {{ post.date|date('jS F Y') }}</p>
</div>
2019-01-05 00:08:45 +00:00
{% include 'post/intro-image' with { page: post } %}
<div class="markup mb-4">
<p>{{ post.excerpt }}</p>
</div>