Files
santeh-ray/templates/404.html
Azimkin db46b5eefc
All checks were successful
Build and Push Docker Image / build (push) Successful in 27s
feat: добавить миграцию для моделей Category и Item, шаблон 404 страницы
- Создана миграция `0001_initial.py` для моделей `Category` и `Item`
- Добавлен шаблон `404.html` с пользовательским стилем и макетом ошибки
2026-04-07 22:33:16 +02:00

30 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "_layouts/base.html" %}
{% load static %}
{% block title %}404{% endblock %}
{% block add_css %}
<link rel="stylesheet" href="{% static "css/index.css" %}">
<link rel="stylesheet" href="{% static 'css/error.css' %}">
{% endblock %}
{% block content %}
<div class="full-page">
{% include "_fragments/header.html" %}
<main class="container error-page">
<h1 class="error-code">4 0 4</h1>
<h2 class="error-subtitle">ОЙ, КАЖЕТСЯ ЗДЕСЬ НИЧЕГО НЕТ...</h2>
<p class="error-description">
Приносим свои извинения! Скорее всего вы попали <br>
на несуществующую страницу, предлагаем вам вернутся в каталог.
</p>
<div class="error-actions">
<a href="/catalog/" class="error-btn-1">ПЕРЕЙТИ В КАТАЛОГ</a>
<a href="/" class="error-btn-2">НА ГЛАВНУЮ</a>
</div>
</main>
{% include "_fragments/footer.html" %}
</div>
{% endblock %}