Skip to content

Commit

Permalink
Update index.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Mar 15, 2022
1 parent 8385713 commit 34edccd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/index.svelte
@@ -1,13 +1,15 @@
<script>
import Chessboard from '$lib/Chessboard.svelte';
let size = 16;
$: if (size > 26) {size = 26}
$: if (size < 1) {size = 1}
const INITIAL_POSITION = `${size} rabnljwqkwjlnbarppppggppppggpppp4gg4gg168GG4GG4PPPPGGPPPPGGPPPPRABNLJWQKWJLNBAR`;
let position = INITIAL_POSITION;
let history = [];
</script>

<svelte:head>
<!-- Primary Meta Tags -->
<!-- Primary Meta Tags. TODO: use svelte-seo -->

<title>Chess 2 — Command. Control. Conquer.</title>
<meta name="title" content="Chess 2 — Command. Control. Conquer." />
Expand Down

0 comments on commit 34edccd

Please sign in to comment.