-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtemplate.html
More file actions
105 lines (88 loc) · 2.32 KB
/
template.html
File metadata and controls
105 lines (88 loc) · 2.32 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Feather Breakfree</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0d0d0d;
color: #e6e6e6;
line-height: 1.7;
}
.logo-container {
text-align: center;
margin-bottom: 10px;
}
.logo-container img {
width: 130px;
border-radius: 12px;
box-shadow: 0 0 15px #00000050;
}
h1 {
text-align: center;
font-size: 28px;
margin-bottom: 10px;
color: #ffffff;
}
p {
text-align: center;
opacity: 0.8;
margin-bottom: 25px;
}
.plist-item {
background: #1a1a1a;
padding: 16px 20px;
border: 1px solid #333;
border-radius: 10px;
margin: 15px 0;
box-shadow: 0 0 10px #00000040;
transition: transform 0.15s ease, background 0.15s ease;
}
.plist-item:hover {
transform: scale(1.02);
background: #222;
}
.plist-item strong {
font-size: 20px;
color: #fff;
}
a {
display: inline-block;
margin-top: 8px;
padding: 8px 14px;
background: #007aff;
color: #ffffff !important;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
transition: background 0.15s ease;
}
a:hover {
background: #005bbf;
}
.footer {
margin-top: 40px;
text-align: center;
font-size: 14px;
opacity: 0.5;
}
</style>
</head>
<body>
<div class="logo-container">
<img src="https://files.catbox.moe/q14pfx.jpeg" alt="Feather Logo">
</div>
<h1>BreakFree Feather Installers</h1>
<p>Use any of the below installers to install Feather</p>
{{PLIST_BLOCKS}}
<div class="footer">
Made with ❤️ by Frizzle
<br>
Last updated: {{LAST_UPDATED}}
</div>
</body>
</html>