{% load wagtailcore_tags static %}

{{ blog.title }}

{% if blog.date %}
{{ blog.date|date:"F jS, Y" }}
{% endif %} {% if include_context == "index_page" %}
{{ blog.body|richtext|truncatewords_html:70 }} Read the rest of this entry »
{% else %}
{{ blog.body|richtext }}
{% endif %}
{% 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 'blog/blog_post_comments_xtd_link.html' with blog=blog %} {% elif False %} No Comments {% endif %}