add new page levels
This commit is contained in:
2023-07-12 20:00:10 +03:00
parent b033f5c96d
commit ed402e6b2d
11 changed files with 232 additions and 2 deletions

19
templates/tb_base.html Normal file
View File

@@ -0,0 +1,19 @@
{% 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>