forked from BGMP/bgm.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
41 lines (30 loc) · 804 Bytes
/
Copy path404.html
File metadata and controls
41 lines (30 loc) · 804 Bytes
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
---
layout: none
title: Not Found
---
<style>
.jumbotron {
background: url("{{ site.url }}/assets/img/404.jpg") no-repeat;
border-radius: 0;
}
.text-error {
font-size: 40px;
font-weight: bold;
color: white;
text-shadow: 0 0 8px #000;
}
</style>
<html lang="en">
{% include head.html %}
<body>
<script>
document.body.classList.toggle('dark-theme', localStorage.getItem('dark-theme') === 'true');
</script>
{% include nav.html %}
<div class="container" style="background-size: 100%">
<div class="jumbotron p-3 p-md-6 text-error bg-dark" style="background-size: 100% 263px;">
<h1 style="margin-left: 20px; font-size: 80px;" class="display-4"><b>Error 404</b></h1>
</div>
</div>
</body>
{% include footer.html %}