forked from looma/Looma-II
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlooma-bagh-chal.php
executable file
·44 lines (36 loc) · 1.11 KB
/
looma-bagh-chal.php
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
<!doctype html>
<!--
Filename: bagh-chal.php
Date: 5/18
Author: Skip
Owner: VillageTech Solutions (villagetechsolutions.org)
Date: 2018
Revision: Looma 3
-->
<?php
$page_title = 'Looma Bagh Chal';
$prefix = "../Looma/";
require_once ($prefix . 'includes/header.php');
?>
<link rel="stylesheet" href="css/looma-bagh-chal.css">
</head>
<body>
<div id="main-container-horizontal">
<div id="fullscreen">
<span class="title"><?php keyword('Bagh Chal') ?></span>
<div id="corral"></div>
<div id="game">
<img src="images/alquerque_board.png" id="alquerque">
</div>
<?php include ('includes/looma-control-buttons.php');?>
<button id="info"></button>
<button id="newgame">New Game</button>
<button id="sign" disabled>Next turn: <img id="next"></img></button>
</div>
</div>
<?php include ($prefix . 'includes/toolbar.php'); ?>
<?php include ($prefix . 'includes/js-includes.php'); ?>
<script src="js/jquery-ui.min.js"> </script>
<script src="js/looma-bagh-chal.js"></script>
</body>
</html>