blob: 809ed3dcc5ea60cedb3a6ae28469fd710cf1cd45 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<title>Royal Game of Ur</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="/favicon.ico">
<!-- <script src="https://cdn.jsdelivr.net/npm/vue"></script> -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="/ur/main.js"></script>
<link rel="stylesheet" type="text/css" href="/ur/styles.css">
</head>
<body>
<div id="data">
<h1 v-if="status">{{status}}</h1>
<canvas id="canvas" width="401" height="301"></canvas>
<div>
<button v-on:click="newGame">{{this.playing ? 'Forfeit' : 'New Game'}}</button>
</div>
</div>
</body>
</html>
|