-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
59 lines (47 loc) · 2.06 KB
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="ua">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Сторінку не знайдено | StepHub</title>
<link rel="shortcut icon" href="favicon.ico">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Material Design Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Font Awesome Icons -->
<link href="vendor/fontawesome-free-5.9.0-web/css/all.css" rel="stylesheet">
<!-- load all styles -->
<link href="css/main.css" rel="stylesheet">
<link href="css/announcement.css" rel="stylesheet">
</head>
<body class="text-center">
<!-- Preloader -->
<?php include_once 'templates/preloader.html'; ?>
<!-- Navigation -->
<?php include_once 'templates/navbar.php'; ?>
<!-- Page Content -->
<div class="container p-0 p-md-3 pt-md-5 ">
<div class="card not-found-parent diagonal-gradient-gray-light shadow-sm border-xs-0">
<div class="card-body text-center p-0 p-md-3">
<div class="card not-found-child diagonal-gradient-gray-light border-xs-0">
<div class="card-body text-center my-color-dark py-5">
<h1>404</h1>
<h3 class="mb-5">Вибачте, сторінку не знайдено</h3>
<a href="index.php" class="btn my-btn-outline-dark">Повернутись на головну</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<?php include_once 'templates/footer.php'; ?>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Main sctipt -->
<script src="js/script.js"></script>
</body>
</html>