-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
45 lines (39 loc) · 1.12 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
43
44
45
<html>
<head>
<title>Solitaire</title>
<link href="./index.scss" rel="stylesheet">
<link rel="shortcut icon" href="./Images/Icon.png">
<link rel="apple-touch-icon" href="/Images/Icon-Solid.png">
<script type="module" src="./index.ts"></script>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no, shrink-to-fit=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
</head>
<body>
<div id="tableHolder">
</div>
<div id="buttons">
<button id="newGameButton">New Game</button>
<button id="undoButton">Undo</button>
<button id="redoButton">Redo</button>
</div>
</body>
<template id="rootViewTemplate">
<div class="cardTable">
<span class="gameScore">12 / 100</span>
</div>
</template>
<template id="cardViewTemplate">
<div class="card">
<div class="cardRotation">
<div class="cardFront"></div>
<div class="cardBack"></div>
</div>
</div>
</template>
<template id="pileViewTemplate">
<div class="pile">
</div>
</template>
</html>