You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

62 lines
2.1 KiB

{% load static %}
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<base href="/">
<title>{{ title }}</title>
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Custom Browsers Color Start -->
<meta name="theme-color" content="#000">
<!-- Custom Browsers Color End -->
<!-- Template Basic Images Start -->
<meta property="og:image" content="{% static "img/favicon/favicon.ico" %}">
<!-- Template Basic Images End -->
<link rel="icon" href="{% static "img/favicon/favicon.ico" %}">
<link rel="apple-touch-icon" sizes="180x180" href="{% static "img/favicon/apple-touch-icon-180x180.png" %}">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700&amp;subset=cyrillic" rel="stylesheet">
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'css/main.min.css' %}">
<link rel="stylesheet" href="{% static 'css/main.fix.css' %}">
{% block extra_head_content %}
{% endblock extra_head_content %}
</head>
<body>
{% include 'components/header.html' %}
{% include 'components/navbar.html' %}
{% block pre_content %}
{% endblock pre_content %}
<div class="main">
<div class="container">
<div class="row">
{% block content %}
{% endblock content %}
</div>
</div>
</div>
{% block post_content %}
{% endblock post_content %}
{% include 'components/footer.html' %}
{% block extra_post_content %}
{% endblock extra_post_content %}
<!-- jQuery -->
<script src="{% static 'js/scripts.min.js' %}"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="{% static 'js/bootstrap.min.js' %}"></script>
{#<script src="{% static 'js/basket.tools.js' %}"></script>#}
{#<script src="{% static 'js/jquery.autocomplete.js' %}"></script>#}
{#<script src="{% static 'js/our_search_code.js' %}"></script>#}
{% block extra_body_js %}
{% endblock extra_body_js %}
</body>
</html>