11ty-theme/src/_includes/partials/article-head.html
2023-06-24 13:07:06 +02:00

22 lines
572 B
HTML

<header class="wrapper-lg">
<div>
<h1>{{ title }}</h1>
{% if description %}
<p>{{ description }}</p>
{% endif %}
{% if date or tags %}
<ul class="list-inline">
{% if date %}
<li><time datetime="{{ date | getDatetime }}">{{ date | toFullDate }}</time></li>
{% endif %}
{% if tags %}
{% for tag in tags %}
<li>
<a href="/tags/{{ tag | slug }}/">{{ tag | title }}</a>
</li>
{% endfor %}
{% endif %}
</ul>
{% endif %}
</div>
</header>