-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
28 lines (25 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Security-Policy"
content="default-src blob: data: 'self' tse: 'unsafe-eval' 'unsafe-inline'">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Trilogy Save Editor - by Karlitos</title>
<link data-trunk rel="css" href="target/index.css" />
<link data-trunk rel="rust" data-wasm-opt />
</head>
<body class="bg-default-bg font-default text-[0.825rem] leading-[20px] text-white overflow-hidden">
<title-bar class="flex bg-title-bar-bg h-[28px] select-none">
<div id="drag_zone" class="flex-auto relative h-full">
<span id="title" class="absolute left-[50vw] -translate-x-1/2 top-1/2 -translate-y-1/2 whitespace-nowrap">
Trilogy Save Editor - by Karlitos
</span>
</div>
<button id="minimize"></button>
<button id="maximize"></button>
<button id="close"></button>
</title-bar>
<app></app>
</body>
</html>