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

16 lines
396 B
Twig
Raw Normal View History

2019-03-04 10:13:52 +00:00
<div class="mb-1">
2019-01-14 06:54:06 +00:00
<h2 class="text-inherit text-lg m-0">
2019-02-15 21:58:04 +00:00
<a href="{{ post.url }}" class="text-black inline-block">
2019-01-10 00:26:45 +00:00
{{ post.draft ? 'Draft: '|upper }}{{ post.title }}
</a>
</h2>
2019-01-05 00:08:45 +00:00
2019-03-04 10:13:52 +00:00
{% if show_date %}
<p class="text-sm text-grey-dark mb-1">Posted on {{ post.date|date('jS F Y') }}</p>
{% endif %}
</div>
2019-01-05 00:08:45 +00:00
2019-02-13 01:43:45 +00:00
<div>
2019-03-04 09:49:40 +00:00
<p>{{ post.excerpt }}</p>
2019-01-05 00:08:45 +00:00
</div>