
	<div class="about">

		{% if presentation %}
			<div class="presentation">
				{% for part in presentation %}
					{% if part.h %}<h3 class="h3">{{ part.h|raw }}</h3>{% endif %}
					<p class="p">{{ part.p|raw }}</p>
				{% endfor %}
			</div>
		{% endif %}
		
	</div>

	{% if resume %}
		{% if resume.h %}<h3 class="h3 h3--resume">{{ resume.h|raw }}</h3>{% endif %}
	{% endif %}

</div>

{% if resume.list %}
	{% include './objects/resume.twig' with resume.list %}
{% endif %}