-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
61 lines (57 loc) · 1.4 KB
/
template.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="{{title}}" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:type" content="website" />
<title>{{title}}</title>
<style>
body {
font-family: "Ubuntu", Arial, sans-serif;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
background-color: #e3f2fd;
margin: 0;
flex-direction: column;
padding: 20px;
}
a {
display: block;
margin: 10px;
padding: 10px;
color: white;
text-decoration: none;
border-radius: 5px;
transition: 50ms;
transition-delay: 20ms;
}
a:hover {
transition: 50ms;
transform: scale(1.05);
transition-delay: 20ms;
}
.container {
display: flex;
flex-direction: column;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 30px;
width: 90%;
max-width: 400px;
}
</style>
</head>
<body>
<div class="container">
<h1>{{title}}</h1>
{{links}}
</div>
</body>
</html>