carte.html.twig 539 Bytes
Newer Older
Damien Moulard committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{% extends 'common/layout.html.twig' %}

{% block content %}
<div class='container prestalist mt-2'>
	<div class='card'>
		<div class="card-header"><h3>{{ 'Carte des comptoirs :'|trans }}</h3></div>
		<div class="card-body">
			<div class="card-text">
				{% include 'presta/block/carte.html.twig' with {title: 'Situer les comptoirs'|trans, id: 'comptoirid', style:"height: 400px;"} %}
			</div>
		</div>
	</div>
</div>
{% endblock %}

{% block js %}
{% include 'comptoir/block/cartejs.html.twig' with {id: 'comptoirid'} %}
{% endblock %}