20 lines
575 B
HTML
20 lines
575 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FairPlay</title>
|
|
<meta name="viewport" content="initial-scale=1">
|
|
<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> |