{% load i18n easy_thumbnails_tags aircox %} {% comment %} List item for a page Context variables: - object: the object to render - render_card: render as card - is-primary: render as primary - has_headline (=False): if True, display headline - has_cover (=True): hide page cover {% endcomment %} {% if render_card %}

{{ object.title }}

{% else %}
{% if has_cover|default_if_none:True %}
{% endif %}
{% block title %} {% if object.is_published %} {{ object.title }} {% else %} {{ object.title }} {% endif %} {% endblock %}
{% block subtitle %} {% if object.category %}{{ object.category.title }}{% endif %} {% endblock %}
{% if has_headline|default_if_none:True %}
{% block headline %}{{ object.headline }}{% endblock %}
{% endif %}
{% endif %}