51 lines
2.0 KiB
Twig
Executable File
51 lines
2.0 KiB
Twig
Executable File
{% extends 'partials/base.html.twig' %}
|
||
|
||
{% block content %}
|
||
<div class="columns small-12 intertitre">
|
||
<div class="row ">
|
||
<div class="columns medium-8 medium-offset-2 small-10 small-offset-1">
|
||
<h3>{{ page.title }}</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="columns medium-6 medium-offset-2 small-10 small-offset-1 map">
|
||
<div class="row">
|
||
<div class="columns medium-8 small-8">
|
||
<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=2.3604136705398564%2C48.91017134932892%2C2.366636395454407%2C48.91285787416928&layer=mapnik" style="border: 1px solid black"></iframe><br/><small><a href="https://www.openstreetmap.org/#map=18/48.91151/2.36353">View Larger Map</a></small>
|
||
</div>
|
||
<div class="columns medium-3 small-4">
|
||
<p><b>Adresse</b><br/>{{page.header.addr}}</p>
|
||
<p><b>Accès transport</b><br/>
|
||
{% for item in page.header.transport %}
|
||
{{ item.vroum }}<br/>
|
||
{% endfor %}
|
||
</p>
|
||
<p><b>téléphone</b><br/>{{page.header.tel}}</p>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<div class="columns medium-2 small-10 small-offset-1 info_side">
|
||
<h4 class="pinky">Recevoir la newsletter</h4>
|
||
<a href="#" data-token="32f3438cb8ff66b06fae26eea7341b92" onclick="mjOpenPopin(event, this)">
|
||
<div class="button hollow">
|
||
S'inscrire
|
||
</div>
|
||
</a>
|
||
</div>
|
||
|
||
<div class="columns small-10 small-offset-1 medium-6 medium-offset-2 contact">
|
||
<p>
|
||
Pour obtenir plus d’informations sur nos activités, nous solliciter pour une intervention (conférence, journée d’étude, séminaire, colloque...) n’hésitez pas à nous contacter :
|
||
|
||
</p>
|
||
<h2>{{ page.header.email }}</h2>
|
||
</div>
|
||
|
||
<div class="columns medium-2 small-10 small-offset-1 info_side">
|
||
<h4 class="pinky">Nous suivres :</h4><br/>
|
||
<a href="{{tw}}"><img src="{{ url('theme://images/tw.svg') }}" alt=""></a>
|
||
<a href="{{fb}}"><img src="{{ url('theme://images/fb.svg') }}" alt=""></a>
|
||
</div>
|
||
{% endblock %}
|