carte.html.twig 680 Bytes
Newer Older
Julien Jorry committed
1 2 3 4
{% extends '@kohinos/common/layout.html.twig' %}

{% block content %}
<div class='container prestalist mt-2'>
5 6 7 8 9 10
	{% if tav_env == 1 %}
		{% set name = "Carte des points de vente" %}
	{% else %}
		{% set name = "Carte des prestataires" %}
	{% endif %}
	{% include '@kohinos/block/breadcrumb.html.twig' with {'label' : name} %}
Julien Jorry committed
11
	<div class='card'>
12
		<div class="card-header"><h3>{{ name|trans }}</h3></div>
Julien Jorry committed
13 14 15 16 17 18 19 20 21 22 23 24
		<div class="card-body">
			<div class="card-text">
				{% include '@kohinos/presta/block/carte.html.twig' with {style:"height: 400px;"} %}
			</div>
		</div>
	</div>
</div>
{% endblock %}

{% block js %}
{% include '@kohinos/presta/block/cartejs.html.twig' %}
{% endblock %}