50 lines
1.5 KiB
Twig
50 lines
1.5 KiB
Twig
{% extends 'layouts/base.twig' %}
|
|
|
|
{% block content %}
|
|
<p class="alert alert-info" role="alert">
|
|
<i class="bi bi-envelope-at"></i>
|
|
Barakaldo</p>
|
|
|
|
<section class="contacto-barakaldo">
|
|
<div class="container my-5">
|
|
<div class="row">
|
|
|
|
<!-- Column map -->
|
|
<div class="col-md-6 mb-4 mb-md-0">
|
|
<div class="ratio ratio-4x3">
|
|
{# Aquí puedes incrustar un iframe o un mapa generado #}
|
|
<iframe width="425"
|
|
height="350"
|
|
src="https://www.openstreetmap.org/export/embed.html?bbox=-2.986932098865509%2C43.29429552013704%2C-2.984805107116699%2C43.29620671523328&layer=mapnik"
|
|
style="border: 1px solid black">
|
|
</iframe><br/>
|
|
|
|
</div>
|
|
<small><a href="https://www.openstreetmap.org/?#map=19/43.295251/-2.985869">Ver el mapa más grande</a></small>
|
|
</div>
|
|
|
|
<!-- Column content -->
|
|
<div class="col-md-6">
|
|
<div class="content">
|
|
{{ page.content }}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- formulario -->
|
|
<div class="row mt-5">
|
|
<div class="col-12">
|
|
<p class="mb-4 position-relative fs-4 fw-bold sp-module-title">Contacto</p>
|
|
|
|
<div class="formulario-contacto">
|
|
{{ form_test | raw }}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|