-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 772 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wallpaper Generator</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div id="wallpaper-selection"></div>
<div id="size-previews"></div>
<template id="size-template">
<div class="size">
<iframe src="wallpapers/characters-git/index.html"></iframe>
<div class="sizes"><span></span> x <span></span></div>
</div>
</template>
<script type="module" src="/src/wallpaper-selector.ts"></script>
<script type="module" src="/src/previews-generator.ts"></script>
</body>
</html>