mirror of
https://github.com/zaphar/jeremy.marzhillstudios.com.git
synced 2025-07-22 19:39:56 -04:00
16 lines
573 B
HTML
16 lines
573 B
HTML
|
{% macro title(page) %}
|
||
|
<header class="post__header">
|
||
|
<h1 class="post__title">
|
||
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
||
|
</h1>
|
||
|
<div class="post__meta">
|
||
|
<span class="post__time">{{ page.date | date(format="%F") }}</span>
|
||
|
{% if page.category %}
|
||
|
<div class="post__category">
|
||
|
<a href="{{ get_taxonomy_url(kind="category", name=page.category) }}">{{ page.category }}</a>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</header>
|
||
|
{% endmacro title %}
|