-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
26 lines (20 loc) · 968 Bytes
/
404.html
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
---
---
{% include header.html %}
<div class="container py-4 d-flex align-items-center justify-content-center" style="min-height: 100vh;">
<div class="row justify-content-center">
<div class="col-12 col-sm-8 d-flex flex-column align-items-center">
<h3 class="text-center">404 Page not found</h3>
<img src="{{ '/assets/img/wall-404.svg' | absolute_url }}" class="img-fluid w-75 w-sm-50 py-3" alt="404 Not Found" />
<div class="w-100 py-3 px-3">
<p>The requested page could not be found. If you feel this is not normal, then you create an issue on the Gitlab.</p>
<a href="javascript:window.history.go(-1);" class="btn btn-sm btn-primary" role="button">Go Back</a>
<a href="{{ '/issues/' | prepend: site.website_repo }}" class="btn btn-sm btn-outline-primary" role="button">File an issue</a>
</div>
</div>
</div>
</div>
<script>
// console.log(window.history.back());
</script>
{% include footer.html %}