-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.hbs
26 lines (25 loc) · 1.25 KB
/
error.hbs
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
{{!< default}}
<style>
body {background-color: #F4F4F6;}
</style>
<div class="container">
<div class="row d-flex flex-row">
<!-- start --><div class="col-12">
<p class="my-3 fw-light"><a href="/" class="text-secondary text-decoration-none"><i class="bi bi-arrow-return-left"></i> Index</a></p>
</div><!-- end -->
<!-- start --><div class="col-12">
<div class="card overflow-hidden rounded-4 border-0">
<div class="d-flex align-items-center p-5 pb-3 text-secondary text-shadow-1 " style="height: 70vh;">
<div class="content w-100">
<div class="article text-center">
<img src="{{asset 'img/404.svg'}}" class="img-fluid" width="500px" />
<p> </p>
<h1>Page Not Found</h1>
<p class="my-3 fw-light"><a href="/" class="text-secondary text-decoration-none"><i class="bi bi-arrow-return-left"></i> Go Index</a></p>
</div>
</div>
</div>
</div>
</div><!-- end -->
</div>
</div>