2024-08-25 00:54:11 +00:00
|
|
|
<!DOCTYPE html>
|
2024-09-03 20:22:02 +00:00
|
|
|
<html data-theme="light" lang="es" style="background-color: rgb(205, 243, 148); color: black;">
|
2024-08-25 00:54:11 +00:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Interactive Map</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='pico.amber.css') }}">
|
|
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
|
|
|
|
|
|
|
|
</head>
|
2024-08-26 19:40:34 +00:00
|
|
|
<body style="background-color: rgb(205, 243, 148); color: black;overflow-y: scroll;">
|
2024-09-05 21:02:43 +00:00
|
|
|
<nav style="height: auto;">
|
2024-08-25 00:54:11 +00:00
|
|
|
<ul>
|
2024-09-05 22:23:21 +00:00
|
|
|
<a href="/"><li><h3 style="margin-bottom: 0;">Bachemapa</h3></li></a>
|
2024-08-25 00:54:11 +00:00
|
|
|
</ul>
|
2024-09-05 21:02:43 +00:00
|
|
|
|
2024-08-25 00:54:11 +00:00
|
|
|
|
|
|
|
|
<ul>
|
2024-09-01 01:23:49 +00:00
|
|
|
<li><button id="pinner-top"><a href="/">Al mapa</a></button></li>
|
2024-08-31 23:50:22 +00:00
|
|
|
<li><button><a href="/quienes">Quienes somos</a></button></li>
|
2024-08-25 00:54:11 +00:00
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
|
{% if messages %}
|
2024-09-05 03:22:51 +00:00
|
|
|
<div style="position:sticky; z-index: 9999;">
|
2024-08-31 23:50:22 +00:00
|
|
|
<ul class="flashes">
|
|
|
|
|
{% for message in messages %}
|
|
|
|
|
<li>{{message}}</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2024-08-25 00:54:11 +00:00
|
|
|
{% endif %}
|
|
|
|
|
{% endwith %}
|
2024-09-05 21:02:43 +00:00
|
|
|
<main class="container-fluid" style="">
|
2024-08-25 00:54:11 +00:00
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</html>
|