-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path404.html
More file actions
23 lines (21 loc) · 773 Bytes
/
404.html
File metadata and controls
23 lines (21 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
title: 404
permalink: /404.html
layout: page
---
<div class="container">
<div class="mt-10 w-100">
<div class="row justify-content-center">
<ul class="list-unstyled text-center" style="padding: 130px 0;">
<li><img src="{{ site.baseurl }}/assets/imgs/img_404.svg"
alt="Page not found" class="img-fluid" style="height: 300px;"/></li>
<li class="mt-4"><h6>The page you are looking for can’t be found</h6></li>
<li class="mt-4">
<a href="{{ site.baseurl }}/">
<button class="btn btn-primary btn-lg btn-bold px-5">Go Home</button>
</a>
</li>
</ul>
</div>
</div>
</div>