2011-11-21 22:02:11 -07:00
|
|
|
<!DOCTYPE html>
|
2011-12-07 21:47:58 -07:00
|
|
|
<!--
|
2014-01-18 23:33:43 -07:00
|
|
|
LADD Roller Derby Scoreboard
|
|
|
|
Copyright © 2014 Neale Pickett <neale@woozle.org>
|
2011-12-07 21:47:58 -07:00
|
|
|
|
2014-01-18 23:33:43 -07:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2011-12-07 21:47:58 -07:00
|
|
|
|
2014-01-18 23:33:43 -07:00
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
2011-12-07 21:47:58 -07:00
|
|
|
|
2014-01-18 23:33:43 -07:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-12-07 21:47:58 -07:00
|
|
|
-->
|
2011-11-21 22:02:11 -07:00
|
|
|
<html>
|
2013-04-13 00:37:39 -06:00
|
|
|
<head>
|
|
|
|
<title>LADD Scoreboard</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="res/scoreboard.css">
|
|
|
|
<script type="text/javascript" src="logos/logos.js"></script>
|
|
|
|
<script type="text/javascript" src="res/scoreboard.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="scoreboard">
|
|
|
|
<p class="left">
|
2013-11-02 09:47:46 -06:00
|
|
|
<img class="logo" id="logo-a" src="" alt="A">
|
2014-01-18 23:33:43 -07:00
|
|
|
<span class="timeouts" id="timeouts-a">3</span>
|
2013-11-02 09:47:46 -06:00
|
|
|
<span class="jammer" id="jammer-a">★</span>
|
|
|
|
<span class="score" id="score-a">-</span>
|
2013-04-13 00:37:39 -06:00
|
|
|
</p>
|
2012-07-06 18:30:37 -06:00
|
|
|
|
2013-04-13 00:37:39 -06:00
|
|
|
<p class="center">
|
2014-01-19 18:25:38 -07:00
|
|
|
<input id="period" value="--:--">
|
2013-11-02 09:47:46 -06:00
|
|
|
<span id="periodtext"></span>
|
2014-01-19 18:25:38 -07:00
|
|
|
<span id="preset">-</span>
|
|
|
|
<input id="jam" value="-:--">
|
2013-11-02 09:47:46 -06:00
|
|
|
<span id="jamtext"></span>
|
2013-04-13 00:37:39 -06:00
|
|
|
</p>
|
2011-11-21 22:02:11 -07:00
|
|
|
|
2013-04-13 00:37:39 -06:00
|
|
|
<p class="right">
|
2013-11-02 09:47:46 -06:00
|
|
|
<img class="logo" id="logo-b" src="" alt="B">
|
2014-01-18 23:33:43 -07:00
|
|
|
<span class="timeouts" id="timeouts-b">3</span>
|
2013-11-02 09:47:46 -06:00
|
|
|
<span class="jammer" id="jammer-b">★</span>
|
|
|
|
<span class="score" id="score-b">-</span>
|
2013-04-13 00:37:39 -06:00
|
|
|
</p>
|
|
|
|
</div>
|
2011-12-09 21:28:31 -07:00
|
|
|
|
2013-04-13 00:37:39 -06:00
|
|
|
<div id="notice">
|
|
|
|
</div>
|
2014-01-18 21:53:52 -07:00
|
|
|
|
|
|
|
<img id="close" src="res/close-icon-white.png" title="Close Scoreboard">
|
|
|
|
|
2013-04-13 00:37:39 -06:00
|
|
|
</body>
|
2011-11-21 22:02:11 -07:00
|
|
|
</html>
|