All checks were successful
Build and Push Docker Image / build (push) Successful in 52s
32 lines
768 B
HTML
32 lines
768 B
HTML
{% extends "_layouts/base.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}Главная{% endblock %}
|
|
|
|
{% block add_css %}
|
|
<link rel="stylesheet" href="{% static "css/index.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- HEADER -->
|
|
{% include "_fragments/header.html" with active="home" %}
|
|
|
|
{% include "home/_fragments/hero.html" %}
|
|
|
|
{% include 'home/_fragments/advantages.html' %}
|
|
|
|
{% include 'home/_fragments/about.html' %}
|
|
|
|
{% include 'home/_fragments/banner.html' %}
|
|
|
|
{% include 'home/_fragments/popular-products.html' %}
|
|
|
|
{% include 'home/_fragments/faq.html' %}
|
|
|
|
{% include "_fragments/footer.html" %}
|
|
{% endblock %}
|
|
|
|
{% block add_js %}
|
|
<script src="{% static 'js/faq-form-validation.js' %}"></script>
|
|
{% endblock %}
|