planet-wars/backend/templates/base.html.tera
2020-04-06 20:22:10 +02:00

24 lines
601 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Planetwars</title>
<link rel="stylesheet" href="/style/base.css">
<link rel="stylesheet" href="/style/style.css">
<link rel="shortcut icon" type="image/png" href="/favicon.ico">
</head>
<body>
<div class="nav">
<ul>
{% for link in nav %}
<li><a {% if link.active %}class="active"{% endif %} href="{{ link.href }}">{{ link.name }}</a></li>
{% endfor %}
</ul>
</div>
<div class="content">
{% block content %}{% endblock content %}
</div>
</body>
</html>