-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 891 Bytes
/
index.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<title>{{.Host}}</title>
<style>
* {
box-sizing: padding-box;
}
html {
height: 100%;
}
body {
font-family: "Courier New", "Courier", monospace;
font-size: 12px;
height: 100%;
margin: 0;
padding: 0;
}
.container {
height: 100%;
position: relative;
}
.content {
text-align: center;
position: relative;
top: 50%;
transform: translateY(-50%);
}
</style>
</head>
<body>
<div class="container">
<div class="content">{{.Host}}</div>
</div>
</body>
</html>