Files
FireGame/templates/tb_base.html
2023-07-13 16:44:05 +03:00

19 lines
522 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/b_header.html" %}
<div class="cut-width">
{% block CONTENT %}
{% endblock %}
</div>
<div style="border-top: 1px solid rgba(196, 196, 196, 1);margin-top: 260px;">
{% include "blocks/b_footer.html" %}
</div>
</body>
</html>