chess/src/main/web/pages/index.html
branchchess
changeset 25 b20104a99a6b
parent 24 af816d5017dc
child 26 b675be28fc49
     1.1 --- a/chess/src/main/web/pages/index.html	Thu Jul 25 16:15:14 2013 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,136 +0,0 @@
     1.4 -<!--
     1.5 -
     1.6 -    The MIT License (MIT)
     1.7 -
     1.8 -    Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.9 -
    1.10 -    Permission is hereby granted, free of charge, to any person obtaining a copy
    1.11 -    of this software and associated documentation files (the "Software"), to deal
    1.12 -    in the Software without restriction, including without limitation the rights
    1.13 -    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    1.14 -    copies of the Software, and to permit persons to whom the Software is
    1.15 -    furnished to do so, subject to the following conditions:
    1.16 -
    1.17 -    The above copyright notice and this permission notice shall be included in
    1.18 -    all copies or substantial portions of the Software.
    1.19 -
    1.20 -    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    1.21 -    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    1.22 -    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    1.23 -    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    1.24 -    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    1.25 -    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    1.26 -    THE SOFTWARE.
    1.27 -
    1.28 --->
    1.29 -<!DOCTYPE html>
    1.30 -<html lang="en">
    1.31 -<head>
    1.32 -	<meta charset="utf-8">
    1.33 -	<title>Chess Client</title>
    1.34 -	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    1.35 -	<meta name="description" content="">
    1.36 -	<meta name="author" content="">
    1.37 -
    1.38 -	<!-- Le styles -->
    1.39 -	<link href="./css/bootstrap.css" rel="stylesheet">
    1.40 -	<link href="./css/bootstrap-responsive.css" rel="stylesheet">
    1.41 -	<link href="./css/chess.css" rel="stylesheet">
    1.42 -	<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    1.43 -	<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    1.44 -	<script>
    1.45 -		$(function() {
    1.46 -			$( ".figure" ).draggable({grid:[76,77]});			
    1.47 -		});
    1.48 -	</script>
    1.49 -</head>
    1.50 -<body>
    1.51 -	<div class="navbar">
    1.52 -		<div class="navbar-inner">
    1.53 -			<a class="brand" href="#">Chess Game</a>
    1.54 -			<ul class="nav">
    1.55 -				<li class="active"><a href="#">My Game</a></li>
    1.56 -				<li><a href="#">New game</a></li>
    1.57 -				<li><a href="#">View games</a></li>
    1.58 -				<li><a href="#">Blah..</a></li>
    1.59 -			</ul>
    1.60 -			<form class="navbar-search pull-right">
    1.61 -				<input type="text" class="search-query" placeholder="Search">
    1.62 -			</form>
    1.63 -		</div>
    1.64 -	</div>
    1.65 -	<div class="container-fluid">
    1.66 -		<div class="row-fluid">
    1.67 -			<div class="span9">
    1.68 -				<h1>My game</h1>
    1.69 -				<table class="board">
    1.70 -                    <tbody data-bind="foreach: rows">
    1.71 -                        <tr >
    1.72 -                            <!-- ko foreach: columns -->
    1.73 -                            <td data-bind="click: changeToPawn, css: squareColor" >
    1.74 -                                <span data-bind='html: pieceEntity'></span>
    1.75 -                            </td>
    1.76 -                            <!-- /ko -->
    1.77 -                        </tr>
    1.78 -                    </tbody>
    1.79 -				</table>
    1.80 -			</div>
    1.81 -			<div class="span2 offset1">
    1.82 -				<h2>Game Log</h2>
    1.83 -				<div class="log">
    1.84 -					<table class="table table-striped log-table">
    1.85 -						<thead>
    1.86 -							<tr>
    1.87 -								<th>#</th>
    1.88 -								<th>Move</th>
    1.89 -							</tr>
    1.90 -						</thead>
    1.91 -						<tbody>
    1.92 -							<tr>
    1.93 -								<td>10</td>
    1.94 -								<td>Move</td>
    1.95 -							</tr>
    1.96 -							<tr>
    1.97 -								<td>9</td>
    1.98 -								<td>Move</td>
    1.99 -							</tr>
   1.100 -							<tr>
   1.101 -								<td>8</td>
   1.102 -								<td>Move</td>
   1.103 -							</tr>
   1.104 -							<tr>
   1.105 -								<td>7</td>
   1.106 -								<td>Move</td>
   1.107 -							</tr>
   1.108 -							<tr>
   1.109 -								<td>6</td>
   1.110 -								<td>Move</td>
   1.111 -							</tr>
   1.112 -							<tr>
   1.113 -								<td>5</td>
   1.114 -								<td>Move</td>
   1.115 -							</tr>
   1.116 -							<tr>
   1.117 -								<td>4</td>
   1.118 -								<td>Move</td>
   1.119 -							</tr>
   1.120 -							<tr>
   1.121 -								<td>3</td>
   1.122 -								<td>Move</td>
   1.123 -							</tr>
   1.124 -							<tr>
   1.125 -								<td>2</td>
   1.126 -								<td>Move</td>
   1.127 -							</tr>
   1.128 -							<tr>
   1.129 -								<td>1</td>
   1.130 -								<td>Move</td>
   1.131 -							</tr>
   1.132 -						</tbody>
   1.133 -					</table>
   1.134 -				</div>
   1.135 -			</div>
   1.136 -		</div>
   1.137 -	</div>
   1.138 -</body>
   1.139 -</html>
   1.140 \ No newline at end of file