Web/main/_includes/post.html
Ell 7851a46fab
All checks were successful
Jenkins
Ellpeck/Web/pipeline/head This commit looks good
project status and blog category style improvements
2023-06-22 23:14:08 +02:00

8 lines
497 B
HTML

<div class="card bg-light blog-entry rounded-0 {% for tag in include.post.tags %} blog-tag-{{ tag | slugify }} {% endfor %}">
<div class="card-body">
<span class="blog-meta text-muted">{{ include.post.tags | join: ", " }}<br>{{ include.post.date | date_to_string }}</span>
<h4 class="card-title"><a class="title-button" href="{{ include.post.url }}">{{ include.post.title }}</a></h4>
<div class="card-text">{{ include.post.description }}</div>
</div>
</div>