This commit is contained in:
Simon Vieille 2022-10-01 10:19:18 +02:00
parent 88df4ae0d9
commit b9b6279a79
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -14,13 +14,13 @@
</h2>
<ul class="md:flex md:gap-3 pl-0">
<li class="pl-0 mt-0 sm:inline">
<li class="md:pl-0 mt-0 inline-block">
<time datetime="{{ post.publishedAt|date("Y-m-d") }}" title="{{ post.publishedAt|date("r") }}">
{{- 'Le ' ~ post.publishedAt|date("d/m/Y à H\\hi") -}}
</time>
</li>
{% for category in post.categories %}
<li class="pl-0 mt-0 sm:inline">
<li class="md:pl-0 mt-0 inline-block">
<a href="{{ safe_path('blog_menu_category', {category: category.id, slug: category.slug, _domain: _domain}) }}">
{{- category.title -}}
</a>
@ -28,7 +28,7 @@
{% endfor %}
{% for tag in post.tags %}
<li class="pl-0 mt-0 sm:inline">
<li class="md:pl-0 mt-0 inline-block">
<a href="{{ safe_path('blog_menu_search', {tag: tag.label, _domain: _domain}) }}">
{{- '#' ~ tag.label -}}
</a>