1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/templates/common/content-details.html

10 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 %}