deev.space/templates/errors/404.html
2025-12-03 04:39:24 +03:00

25 lines
No EOL
957 B
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 'wrapper.html' %}
{% load static %}
{% block title %}Страница не найдена — deev.space{% endblock %}
{% block content %}
<div class="error-container">
<div class="error-card" data-aos="fade-up">
<div class="error-code">404</div>
<h1 class="error-title">Страница не найдена</h1>
<p class="error-description">
К сожалению, запрашиваемая страница не существует или была перемещена.
</p>
<div class="error-actions">
<a href="{% url 'index' %}" class="btn btn-primary">
<i class="fas fa-home"></i>
На главную
</a>
<a href="{% url 'blog' %}" class="btn btn-outline">
<i class="fas fa-pen"></i>
Блог
</a>
</div>
</div>
</div>
{% endblock %}