11 lines
317 B
HTML
11 lines
317 B
HTML
{% load wagtailcore_tags %}
|
|
|
|
{% 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="{% slugurl "blog" %}?tag={{ tag }}" class="mr-1">#{{ tag }}</a>
|
|
{% endfor %}
|
|
{% endif %}
|