initial commit
This commit is contained in:
40
assets/html/file-not-found.tplt
Normal file
40
assets/html/file-not-found.tplt
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ .Title }}</title>
|
||||
<style type="text/css">
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
background-image: linear-gradient(45deg, #f6d200 25%, #181617 25%, #181617 50%, #f6d200 50%, #f6d200 75%, #181617 75%, #181617 100%);
|
||||
}
|
||||
h1 {
|
||||
text-transform: uppercase;
|
||||
background: repeating-linear-gradient(
|
||||
45deg,
|
||||
#f6d200 ,
|
||||
#f6d200 10px,
|
||||
#181617 10px,
|
||||
#181617 20px
|
||||
);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
font-size: 384px;
|
||||
margin: 0;
|
||||
line-height: .7;
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body id="home">
|
||||
<h1 class="text"><span>{{ printf "%d" .ErrorCode }}</span></h1>
|
||||
</body>
|
||||
</html>
|
BIN
assets/html/images/game.png
Normal file
BIN
assets/html/images/game.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
15
assets/html/index.tplt
Normal file
15
assets/html/index.tplt
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ .Title }}</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="text-align: center;">
|
||||
Time: {{ .Time }}
|
||||
<br>
|
||||
<img src="/images/game.png" style="height: 150px;">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user