22 lines
572 B
HTML
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> |