-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.04 KB
/
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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ytinu Mod Manager</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.btn-download,
.btn {
display: block;
padding: 30px;
}
</style>
</head>
<body>
<h1>ytinu</h1>
<h2>Mod Manager</h2>
<p>
A simple to use mod installer and manager for Unity mods using the
<a href="https://github.com/BepInEx/BepInEx">BepInEx</a> modding framework
</p>
<a
class="btn-download"
href="https://github.com/ytinu-mods/ytinu/releases/download/v0.1.0/ytinu.exe"
>
Download for Windows
</a>
<a class="btn" href="https://github.com/ytinu-mods/ytinu/releases/download/v0.1.0/ytinu">
Download for Linux
</a>
<a class="btn" href="https://github.com/ytinu-mods/ytinu">View the source code</a>
</body>
</html>