mirror of
https://git.kittycat.homes/zoe/reversi.git
synced 2024-08-15 03:27:19 +00:00
30 lines
769 B
Handlebars
30 lines
769 B
Handlebars
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
|
|
<script src="/script.js" charset="utf-8" defer></script>
|
|
<title>Reversi Online</title>
|
|
<meta
|
|
charset="utf-8"
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1"
|
|
/>
|
|
<link rel="icon" type="image/x-icon" href="./static/think.svg" />
|
|
</head>
|
|
</html>
|
|
<body>
|
|
<div class="contentdiv">
|
|
<p>{{message}}</p><br />
|
|
<a
|
|
onclick="copyURI(event)"
|
|
id="urlForCopy"
|
|
class="{{hide_url_button}}"
|
|
href="{{url_button_url}}"
|
|
type="button"
|
|
>{{url_button_url}}</a>
|
|
<a href={{link_url}}>{{link}}</a>
|
|
</div>
|
|
<footer>
|
|
<span id="status">reversi</span>
|
|
</footer>
|
|
</body>
|