9 lines
254 B
HTML
9 lines
254 B
HTML
{% if page.post_date %}
|
|
<span class="pr-1" title='{{ page.post_date }}'>{{ page.post_date }}</span>
|
|
{% endif %}
|
|
|
|
{% if page.tags.all.exists %}
|
|
{% for tag in page.tags.all %}
|
|
<a href="" class="mr-1">#{{ tag }}</a>
|
|
{% endfor %}
|
|
{% endif %}
|