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

32 lines
872 B
Twig
Raw Normal View History

2020-02-06 02:03:57 +00:00
<div>
<div>
<h2 class="text-inherit text-lg m-0 leading-snug">
2019-06-06 18:45:05 +00:00
<a
href="{{ post.external_url ?: post.url }}"
class="text-inherit"
tabindex="-1"
>
2019-03-25 23:24:31 +00:00
{{ post.draft ? 'Draft: '|upper }}{{ post.title }}
</a>
2019-03-04 11:32:53 +00:00
</h2>
2019-03-07 02:46:46 +00:00
{% if show_date %}
2020-02-06 02:03:57 +00:00
{% include 'posts/post-date' with { class: 'mt-1 text-sm block' } %}
2019-03-07 02:46:46 +00:00
{% endif %}
2019-03-04 11:32:53 +00:00
</div>
2019-01-05 00:08:45 +00:00
2020-02-06 02:03:57 +00:00
<div class="mt-2">
2019-03-04 11:32:53 +00:00
<p>{{ post.excerpt }}</p>
</div>
2019-01-05 00:08:45 +00:00
{% if not post.type == 'tweet' %}
2020-02-06 02:03:57 +00:00
<div class="mt-1">
<a href="{{ post.url }}" class="text-sm text-gray-600 hover:text-gray-800">
Read more
<span class="visuallyhidden">about '{{ post.title }}'</span>
&rarr;
</a>
</div>
{% endif %}
2019-01-05 00:08:45 +00:00
</div>