blog/_includes/post-item.html
2023-05-27 22:36:48 +02:00

23 lines
761 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<li class="blog-home__list-items__item">
<div class="blog-home__list-items__item__header">
<div class="blog-home__list-items__item__header__meta">
<span
>🗓️ {% assign date_format = site.minima.date_format | default: "%b %-d,
%Y" %} {{ post.date | date: date_format }}
</span>
<span
>#️⃣
<a href="/{{post.category}}">{{post.category | capitalize }}</a></span
>
</div>
<div>
<h3 class="blog-home__list-items__item__header__title">
<a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
</h3>
</div>
<div class="blog-home__list-items__item__header__description">
<span>{{post.description}}</span>
</div>
</div>
</li>