flask-wallapop-watcher/templates/layouts/master.html

18 lines
856 B
HTML
Raw Normal View History

2017-08-01 09:22:15 +02:00
<!DOCTYPE html>
<html lang="es">
<head>
<title>{% block title %}{% endblock %} | Vigilador de Wallapop</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2017-08-06 12:51:28 +02:00
<link rel="stylesheet" href="https://bootswatch.com/superhero/bootstrap.css">
2017-08-01 09:22:15 +02:00
</head>
<body>
<div class="container">
2017-08-06 00:38:21 +02:00
<ul class="nav nav-pills nav-justified">
2017-08-06 12:51:28 +02:00
<li role="presentation" {% if active_page == "buscador" or not active_page %}class="active"{% endif %}><a href="{{ url_for('buscador') }}">Buscador</a></li>
2017-08-06 00:38:21 +02:00
<li role="presentation" {% if active_page == "programadas" %}class="active"{% endif %}><a href="{{ url_for('programadas') }}">Programadas</a></li>
</ul>
2017-08-01 09:22:15 +02:00
{% block body %}{% endblock %}
</div>
</body>
</html>