info.html.twig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {% extends 'partials/base.html.twig' %}
  2. {% block content %}
  3. <div class="columns small-12 intertitre">
  4. <div class="row ">
  5. <div class="columns medium-8 medium-offset-2 small-10 small-offset-1">
  6. <h3>{{ page.title }}</h3>
  7. </div>
  8. </div>
  9. </div>
  10. <div class="columns medium-6 medium-offset-2 small-10 small-offset-1 map">
  11. <div class="row">
  12. <div class="columns medium-8 small-8">
  13. <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&amp;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>
  14. </div>
  15. <div class="columns medium-3 small-4">
  16. <p><b>Adresse</b><br/>{{page.header.addr}}</p>
  17. <p><b>Accès transport</b><br/>
  18. {% for item in page.header.transport %}
  19. {{ item.vroum }}<br/>
  20. {% endfor %}
  21. </p>
  22. <p><b>téléphone</b><br/>{{page.header.tel}}</p>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="columns medium-2 small-10 small-offset-1 info_side">
  27. <h4 class="pinky">Recevoir la newsletter</h4>
  28. <a href="#" data-token="32f3438cb8ff66b06fae26eea7341b92" onclick="mjOpenPopin(event, this)">
  29. <div class="button hollow">
  30. S'inscrire
  31. </div>
  32. </a>
  33. </div>
  34. <div class="columns small-10 small-offset-1 medium-6 medium-offset-2 contact">
  35. <p>
  36. 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 :
  37. </p>
  38. <h2>{{ page.header.email }}</h2>
  39. </div>
  40. <div class="columns medium-2 small-10 small-offset-1 info_side">
  41. <h4 class="pinky">Nous suivres :</h4><br/>
  42. <a href="{{tw}}"><img src="{{ url('theme://images/tw.svg') }}" alt=""></a>
  43. <a href="{{fb}}"><img src="{{ url('theme://images/fb.svg') }}" alt=""></a>
  44. </div>
  45. {% endblock %}