git icon indicating copy to clipboard operation
git copied to clipboard

Работа

Open Gitfixing opened this issue 1 year ago • 0 comments

Мой сайт

<main>
    {% block content %}
    <!-- Блок с контентом, который будет заполняться в дочерних шаблонах -->
    {% endblock %}
</main>

<footer>
    <!-- Футер сайта -->
</footer>
```
<!-- Файл top-sellers.html -->
{% extends 'base.html' %}

{% block content %}
    <h1>Топ-продажи</h1>
    <!-- Контент шаблона top-sellers.html -->
{% endblock %}

Gitfixing avatar Jul 13 '23 16:07 Gitfixing