You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
{% extends 'layout.twig' %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<style>
|
|
:root {
|
|
--gradient-turquoise: linear-gradient(90deg, #00C4B4, #00A3E0);
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 120px;
|
|
margin: 0;
|
|
background: #fff;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-top:50px;
|
|
}
|
|
|
|
|
|
.btn-home {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
background: var(--gradient-turquoise);
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.btn-home:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
</style>
|
|
|
|
<div class="container" style="height: 320px;">
|
|
{% if current_lang == 'ru' %}
|
|
<h1>404</h1>
|
|
<p style="color: #ffffff;margin-top:20px;margin-bottom:20px;">Данной страницы не существует</p>
|
|
<a href="/" class="btn-home">На главную</a>
|
|
{% elseif current_lang == 'en' %}
|
|
<h1>404</h1>
|
|
<p>This page does not exist</p>
|
|
<a href="/" class="btn-home">Main page</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %} |