Files
live-campus-mcs-p-2027.2/Semaine_11/Jour_02/3_3_Jinja2/templates/base.html
T
gauvainboiche 0d071d2843 Semaine 11
2026-07-11 21:38:00 +02:00

36 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}NETWORK INVENTORY{% endblock %}</title>
<style>
body { font-family: sans-serif; margin: 2rem; }
header, footer { background: #f4f4f4; padding: 1rem; }
nav a { margin-right: 1rem; }
table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid #ccc; padding: 0.5rem; text-align: left; }
th { background: #eee; }
.up { color: green; font-weight: bold; }
.down { color: red; font-weight: bold; }
</style>
</head>
<body>
<header>
<nav>
<strong>- MENU -</strong>
<a href="{{ url_for('index') }}">Home</a>
<a href="{{ url_for('actives') }}">Active devices</a>
<a href="{{ url_for('details') }}">Details</a>
<a href="{{ url_for('stats') }}">Stats</a>
</nav>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>Gauvain B. - Flask Jinja2 app</footer>
</body>
</html>