parent
2f29393664
commit
bfe97e26e4
5 changed files with 46 additions and 12 deletions
|
After Width: | Height: | Size: 31 KiB |
@ -1,14 +1,35 @@ |
|||||||
{% extends 'partials/base.html' %} |
{% extends 'partials/_base.html' %} |
||||||
|
{% load static %} |
||||||
|
{% load sass_tags %} |
||||||
|
{% block personal_css %} |
||||||
|
<link rel='stylesheet' href='{% sass_src "partials/sass/404.sass" %}'> |
||||||
|
{% endblock %} |
||||||
{% block content %} |
{% block content %} |
||||||
<section class="mainContainer"> |
<div class="container"> |
||||||
{% include 'partials/header.html' %} |
<div class="row" style="margin-top: 80px; margin-bottom: 80px"> |
||||||
<div class="container-fluid"> |
<div class="col-lg-6"> |
||||||
<div class="row"> |
<img class="_404" src="{% static 'img/404house.jpg' %}" alt="404"> |
||||||
<p class="welcomeMain">404 ошибка сайта</p> |
</div> |
||||||
|
<div class="col-lg-6"> |
||||||
|
<h1 class="_404">404</h1> |
||||||
|
<p style="font-size: 30px; font-weight: bold; padding-bottom: 20px; border-bottom: 1px solid #cfcfcf; margin-bottom: 40px;"> |
||||||
|
Страница не найдена |
||||||
|
</p> |
||||||
|
<p> |
||||||
|
Что-то пошло не по плану <br>и мы не смогли найти эту страницу. |
||||||
|
</p> |
||||||
|
<p> |
||||||
|
Но всегда можно вернуться <br>на <a href="/">главную страницу</a> и начать все с начала ;-) |
||||||
|
</p> |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
</div> |
</div> |
||||||
</section> |
|
||||||
{% endblock %} |
{% endblock %} |
||||||
|
|
||||||
|
{% block footer %} |
||||||
|
<div class="footer-wrapper"> |
||||||
|
<div class="container"> |
||||||
|
{% include 'partials/footer.html' %} |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
{% endblock %} |
||||||
|
|||||||
@ -0,0 +1,8 @@ |
|||||||
|
img._404 |
||||||
|
padding: 10px |
||||||
|
border: 1px solid darkgray |
||||||
|
|
||||||
|
h1._404 |
||||||
|
font-size: 90px |
||||||
|
font-weight: bold |
||||||
|
color: #ff0029 |
||||||
Loading…
Reference in new issue