{% 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 - is_thin (=False): if True, smaller cover and display less info {% endcomment %} {% if render_card %}

{% block card_title %}{{ object.title }}{% endblock %}

{% else %}
{% if has_cover|default_if_none:True %}
{% if is_thin %} {% else %} {% endif %}
{% 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 %}
{% block actions %}{% endblock %}
{% endif %}