1
0
forked from orson/bachemap
bachemap/templates/secondbase.html

47 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html data-theme="light" lang="en" style="background-color: rgb(205, 243, 148); color: black;">
<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-01 01:23:49 +00:00
<nav style="z-index: 500; height: 7vh;">
<ul>
<a href="/"><li><h2>El Bachemapa</h2></li></a>
</ul>
<ul>
2024-09-01 01:23:49 +00:00
<li><button id="pinner-top"><a href="/">Al mapa</a></button></li>
<li><button><a href="/quienes">Quienes somos</a></button></li>
</ul>
</nav>
{% with messages = get_flashed_messages() %}
{% if messages %}
<div style="position:absolute; z-index: 9999;">
<ul class="flashes">
{% for message in messages %}
<li>{{message}}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endwith %}
2024-09-01 00:06:03 +00:00
<main class="" style="padding:0px;height: 100vh; width:100vw; z-index: 5; position: relative;">
{% block content %}
{% endblock %}
</main>
</body>
<script>
</script>
</html>