-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (25 loc) · 1.32 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
<html>
<head>
<title>SpriteSomething-collections</title>
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js" integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" crossorigin="anonymous"></script>
<script src="./js/general.js"></script>
<script src="./js/elements.js"></script>
<script src="./js/templating.js"></script>
<script src="./js/guts.js"></script>
<link rel="stylesheet" href="./css/global.css" type="text/css" />
<link rel="stylesheet" href="./css/usage.css" type="text/css" />
<link rel="icon" href="./icons/app.gif" type="image/gif" sizes="16x16" />
</head>
<body>
<template id="parentHeader"><h1><a></a></h1></template>
<template id="projectHeader"><h1><a></a></h1></template>
<template id="consoleHeader"><h2 id="console-title"><a></a></h2></template>
<template id="gameHeader"><h3 id="game-title"><a></a></h3></template>
<template id="spriteHeader"><h4 id="sprite-title"><a></a></h4></template>
<template id="spritePreview"><div class="sprite"><div class="name"><a></a></div><div class="author"></div><div class="sprite-preview"></div></div></template>
<template id="resourceList"><li><span class="app"></span><ul><li class="file"><a>Layer File</a></li><li class="site"><a>Website</a></li><li class="repo"><a>Source Code</a></li></ul></li></template>
<script>
listingPage("","","");
</script>
</body>
</html>