planet-wars/backend/templates/base.html.tera
2020-03-27 10:31:56 +01:00

23 lines
531 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">
</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>