0.0.19 use new file structure

This commit is contained in:
2023-07-17 18:48:33 +03:00
parent a7b014da20
commit 113e576d4c
9 changed files with 110 additions and 49 deletions

27
templates/tb_base.html Normal file
View File

@@ -0,0 +1,27 @@
{% 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>
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
{% block meta %}
{# {% include 'inter/meta.html' %}#}
{% endblock %}
</head>
<body>
<div class="wrapper">
{% include 'blocks/b_header.html' %}
{% block content %}
{% endblock %}
{% include 'blocks/b_footer.html' %}
</div>
</body>
</html>