Files
yaflay.ru/Pages/NotFound.cshtml
Дмитрий Шиманский 921b8f3db3 add environ error message
add to environ some data and some codereview pages
some fix oembed and OpenGraph
2023-12-20 23:58:14 +03:00

35 lines
1.1 KiB
Plaintext
Raw Permalink 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.
@page
@{
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page not found</title>
<link rel="shortcut icon" type="image/png" href="#">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/404.css" />
</head>
<body>
@{
string path = $"{this.Request.Scheme}://{this.Request.Host}";
}
<div class="error">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7 text-center">
<img src="~/img/error-404.png" alt="image 404">
<h2><b>404</b> Страница не найдена</h2>
<p>посетите главную страницу <br> возможно вы найдёте свой путь</p>
<a href="@path" class="cmn-btn mt-4">На главную</a>
</div>
</div>
</div>
</div>
</body>
</html>