show pub date

This commit is contained in:
bkfox
2020-05-22 14:46:03 +02:00
parent fd070c5d81
commit a9e6b7e17f
3 changed files with 9 additions and 3 deletions

View File

@ -10,7 +10,12 @@ Context:
{% if page.category %}
{% block header_meta %}{{ block.super }}
<span class="column has-text-right">{{ object.category.title }}</span>
<span class="column has-text-right">
{% if object.category %}
{{ object.category.title }} //
{% endif %}
{{ object.pub_date }}
</span>
{% endblock %}
{% endif %}