-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
58 lines (54 loc) · 1.3 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
<!DOCTYPE html>
<title>Dalamud Repo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1 {
font-family: "Raleway", sans-serif
}
body, html {
height: 100%
}
body {
background-color: #222126;
overflow: hidden;
}
code {
color: #e3e3e3;
background-color: #2a292e;
padding: 10px;
font-weight: bold;
border-radius: 10px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.center {
position: fixed;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
padding: 10px;
text-align: center;
color: #fff;
}
</style>
<body>
<div class="container">
<div class="center">
<div class="container">
<img width="128" height="128" src="https://raw.githubusercontent.com/goatcorp/DalamudAssets/master/UIRes/logo.png" />
</div>
<h1>Hi there, this is a Dalamud Repo.</h1>
<p>To add this repo please copy what's below into your Dalamud settings.</p>
<code id=repoLoc></code>
</div>
</div>
<script>
document.getElementById("repoLoc").innerHTML =
window.location.protocol + "//" + window.location.hostname + "/plugins"
</script>
</body>