-
Notifications
You must be signed in to change notification settings - Fork 15
/
page-404.php
57 lines (53 loc) · 2.21 KB
/
page-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
<!DOCTYPE html>
<html lang="en">
<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="keywords" content="">
<title>(404) Page not found | BitShares Blockchain</title>
<base href="/">
<!-- Styles -->
<link rel="stylesheet" href="assets/css/core.css">
<link rel="stylesheet" href="assets/css/thesaas.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Favicons -->
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="icon" href="assets/img/favicon.png">
<!-- Topbar Navigation Bar Begins-->
<?php require('assets/php/header.php');?>
<!-- Top Navigation Bar Ends-->
<body>
<!-- Main container -->
<main class="main-content">
<!--
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
| Content
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
!-->
<section class="section py-100">
<div class="container">
<header class="section-header">
<small>Oops</small>
<h2>Page Not Found!</h2>
<hr>
<p class="lead">We can't seem to find the page you are looking for.</p>
</header>
<br>
<p class="text-center"><a class="btn btn-primary" href="/">Return to the Home Page</a></p>
</div>
</section>
</main>
<!-- END Main container -->
<?php require('assets/php/footer.php');?>
<?php require('assets/php/mobilemenu.php');?>
<script src="assets/js/core.min.js"></script>
<script src="assets/js/script.js"></script>
<!-- End Scripts -->
<!-- Go to Top Button -->
<div id="stop" class="scrollTop bttt-border bttt-round bttt-positionRight bttt-slideFromBottom">
<i class='fa fa-chevron-up'></i>
</div>
<!-- End Go to Top Button -->
</body>
</html>