planet-wars/backend/templates/base.html.tera
2020-03-25 22:14:26 +01:00

17 lines
327 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tera Demo</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
{% block content %}{% endblock content %}
<div style="width: 50%" id="map_holder">
</div>
<script src="script/script.js"></script>
</body>
</html>