Files
santeh-ray/templates/home/index.html
Azimkin aca8f56b9a
All checks were successful
Build and Push Docker Image / build (push) Successful in 52s
Small fixes
2026-06-24 16:19:52 +02:00

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 %}