renewedtab_website/_includes/post_list_item.html

11 lines
315 B
HTML

{% assign post = include.post %}
<a href="{{ post.url }}">
<div class="box mb-3">
<time class="is-pulled-right has-text-grey-light" itemprop="dateCreated" datetime="{{ post.date | date: '%F'}}">
{{ post.date | date_to_long_string }}
</time>
<h4>{{ post.title }}</h4>
{{ post.description }}
</div>
</a>