{% if blog.tags.all %}
Tags:
{% for tag in blog.tags.all %}
{{ tag }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if blog.categories.all %}
Posted in
{% for cat in blog.categories.all %}
{{ cat.category.name }}{% if not forloop.last %}, {% endif %}
{% endfor %} |
{% endif %}
{% if COMMENTS_APP == 'django_comments_xtd' %}
{% include 'wagtail_blog/blog_post_comments_xtd_link.html' with blog=blog %}
{% elif False %}
No Comments
{% endif %}