59 lines
1.8 KiB
HTML
59 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
LADD Roller Derby Scoreboard
|
|
Copyright © 2014 Neale Pickett <neale@woozle.org>
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<html>
|
|
<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">
|
|
<img class="logo" id="logo-a" src="" alt="A">
|
|
<span class="timeouts" id="timeouts-a">3</span>
|
|
<span class="jammer" id="jammer-a">★</span>
|
|
<span class="score" id="score-a">-</span>
|
|
</p>
|
|
|
|
<p class="center">
|
|
<input id="period" value="--:--">
|
|
<span id="periodtext"></span>
|
|
<span id="preset">-</span>
|
|
<input id="jam" value="-:--">
|
|
<span id="jamtext"></span>
|
|
</p>
|
|
|
|
<p class="right">
|
|
<img class="logo" id="logo-b" src="" alt="B">
|
|
<span class="timeouts" id="timeouts-b">3</span>
|
|
<span class="jammer" id="jammer-b">★</span>
|
|
<span class="score" id="score-b">-</span>
|
|
</p>
|
|
</div>
|
|
|
|
<div id="notice">
|
|
</div>
|
|
|
|
<img id="close" src="res/close-icon-white.png" title="Close Scoreboard">
|
|
|
|
</body>
|
|
</html>
|