2020-03-25 22:14:26 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2020-03-27 10:31:56 +01:00
|
|
|
<title>Planetwars</title>
|
2020-03-27 15:27:19 +01:00
|
|
|
<link rel="stylesheet" href="/style/base.css">
|
|
|
|
<link rel="stylesheet" href="/style/style.css">
|
2020-03-31 11:57:31 +02:00
|
|
|
<link rel="shortcut icon" type="image/png" href="favicon.ico">
|
2020-03-25 22:14:26 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-03-27 10:31:56 +01:00
|
|
|
<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>
|
2020-03-25 22:14:26 +01:00
|
|
|
</body>
|
|
|
|
</html>
|