{% extends "base.html" %} {% load wagtailimages_tags %} {% block content %} {{ page.title }} {% for blog in blogs %}

{{ blog.title }}

{{ blog.body|truncatewords_html:10 }} {% for tag in blog.get_tags %} {{ tag }} {% endfor %}
{% endfor %} {% endblock content %}