37 lines
671 B
HTML
37 lines
671 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
|
|
|
|
<script src='{% static "js/jquery_v3_6_4.js" %}'> </script>
|
|
|
|
<script src='{% static "js/chat_sockets.js" %}'></script>
|
|
|
|
|
|
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/styles(boris).css' %}" >
|
|
|
|
<script src="{% static "js/global_js.js" %}"></script>
|
|
|
|
|
|
|
|
{% block meta %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
|
|
{% include 'blocks/b_header.html' %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{% include 'blocks/b_footer.html' %}
|
|
|
|
</div>
|
|
</body>
|
|
</html> |