18 lines
386 B
HTML
18 lines
386 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
{% include 'seo.html' %}
|
|
<title>{{ title }}</title>
|
|
<!-- styles -->
|
|
{% include 'css.html' %}
|
|
<!-- script -->
|
|
{% include 'script.html' %}
|
|
</head>
|
|
<body>
|
|
{% include 'nav.html' %}
|
|
{% include 'headers.html' %}
|
|
{% include 'welcome.html' %}
|
|
{% include 'caruserl.html' %}
|
|
</body>
|
|
</html> |