{% extends "base.html" %} {% block page_class %}{{ super() }} pet-listing-page{% endblock page_class %} {% block content_header %}

{{ SITENAME | forceescape }}

{% endblock content_header %} {% block content %} {% set listing_articles = articles_page.object_list if articles_page else articles %} {% if listing_articles %}
{% for article in listing_articles %}

{{ article.title | striptags | forceescape }}

{% if article.summary | default('') %}
{{ article.summary }}
{% endif %} {% set pet_metadata_content = article %}{% include "includes/article-metadata.html" %}
{% endfor %}
{% else %}

No articles are available.

{% endif %} {% include "includes/pagination.html" %} {% endblock content %}