31 lines
545 B
HTML
31 lines
545 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>
|
|
|
|
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'css/styles(boris).css' %}">
|
|
|
|
|
|
{% block meta %}
|
|
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
{% include 'blocks/b_header.html' %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{% include 'blocks/b_footer.html' %}
|
|
|
|
</div>
|
|
</body>
|
|
</html> |