Files
FireGame/templates/tb_base.html
borissedw ed402e6b2d 0.0.1
add new page levels
2023-07-12 20:00:10 +03:00

19 lines
364 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FairPlay</title>
<link rel="stylesheet" href="{% static "css/firegame_css.css"%}">
</head>
<body>
{% include "blocks/header.html" %}
<div class="cut-width">
{% block CONTENT %}
{% endblock %}
</div>
<div>
</div>
</body>
</html>