{% extends 'base.html.twig' %}

{% block body %}
	{% if dev %}<!-- category {% if body.id == 'photos' %}photos {% endif %}-->{% endif %}
	<div class="content">

		{% if display.breadcrumb %}
			{% include 'partials/breadcrumb.twig' with breadcrumb %}
		{% endif %}

		<div class="category {% if body.id == 'photos' %}category--photos{% endif %}">
			
			{% if display.h1 %}
				<h1 class="h1 category-content__title category-content__title--h1 text-gradient">{{ title_page|raw }}</h1>
			{% endif %}

			{% if list_type != 'inline' %}
				<ul class="category__list">
					{% for item in listing %}
						<li class="category__item">
							<a class="category__item-link" href="{{ item.href }}" title="{{ item.name }}">{{ item.name }}</a>
						</li>
					{% endfor %}
				</ul>
			{% endif %}

			{% if list_summary %}
				{% include 'objects/summary.twig' with list_summary %}
			{% endif %}

		</div>
	</div>
	
	{% if list_type == 'inline' %}
		{% include 'objects/mozaique.twig' with listing %}
	{% endif %}
{% endblock %}