oliverdavies.uk/source/_partials/blog/post-summary.html.twig

16 lines
441 B
Twig
Raw Normal View History

2019-01-14 06:54:06 +00:00
<div class="markup mb-2">
<h2 class="text-inherit text-lg m-0">
2019-01-10 00:26:45 +00:00
<a href="{{ post.url }}" class="text-black focus:text-white inline-block">
{{ post.draft ? 'Draft: '|upper }}{{ post.title }}
</a>
</h2>
2019-01-05 00:08:45 +00:00
2019-01-14 06:54:06 +00:00
<p class="text-sm text-grey-dark">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 } %}
2019-01-14 08:38:51 +00:00
<div class="markup">
2019-01-05 00:08:45 +00:00
<p>{{ post.excerpt }}</p>
</div>