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

50 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html data-theme="light" lang="es" style="background-color: rgb(205, 243, 148); color: black; overflow-y:scroll">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mapa interactivo de baches y otras cosas</title>
<link rel="stylesheet" href="{{ url_for('static', filename='pico.amber.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body style="color: black;overflow-y: scroll;">
<nav style="height: auto; align-items:center">
<ul>
<a href="/"><li><h3 style="margin-bottom: 0;">Bachemapa</h3></li></a>
</ul>
<ul>
<li><button id="pinner-top"><a href="/">Al mapa</a></button></li>
<li><button><a href="/quienes">Somos</a></button></li>
<li><button style="background-color: rgb(241, 165, 0);"><a href="/logout">Salir</a></button></li>
</ul>
</nav>
{% with messages = get_flashed_messages() %}
{% if messages %}
<div style="position:sticky; z-index: 9999;">
<ul class="flashes">
{% for message in messages %}
<li>{{message}}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endwith %}
<main class="container-fluid" style="display:block; margin-top:100px">
{% block content %}
{% endblock %}
</main>
</body>
<script>
</script>
</html>