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

{% block body %}
	{% if dev %}<!-- photo -->{% endif %}


	{% if not content %}<div class="gallery-alone">{% endif %}

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

	<article class="photo">

		<div class="content">
			<h1 class="h1 content__title content__title--h1 text-gradient">{{ title_page|raw }}</h1>
			{% if photo_info %}<p class="p content__paragraph content__paragraph--info">{{ photo_info }}</p>{% endif %}
		</div>

		{% include 'objects/gallery.twig' with gallery %}

		{% if content %}
			<div class="content">
				{% for paragraph in content %}
					<p class="p content__paragraph">{{ paragraph|raw }}</p>
				{% endfor %}
			</div>
		{% endif %}

	</article>

	{% if not content %}</div>{% endif %}

{% endblock %}