planet-wars/backend/templates/base.html.tera

23 lines
531 B
Plaintext
Raw Normal View History

2020-03-25 21:14:26 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2020-03-27 09:31:56 +00:00
<title>Planetwars</title>
<link rel="stylesheet" href="style/base.css">
2020-03-25 21:14:26 +00:00
<link rel="stylesheet" href="style/style.css">
</head>
<body>
2020-03-27 09:31:56 +00: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 21:14:26 +00:00
</body>
</html>