mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
{{/*
|
|
Copyright 2014 Team 254. All Rights Reserved.
|
|
Author: pat@patfairbank.com (Patrick Fairbank)
|
|
|
|
Display shown on the screens above each driver station.
|
|
*/}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Alliance Station Display - {{.EventSettings.Name}} - Cheesy Arena </title>
|
|
<link rel="shortcut icon" href="/static/img/favicon32.png">
|
|
<link rel="stylesheet" href="/static/css/lib/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="/static/css/cheesy-arena.css" />
|
|
<link rel="stylesheet" href="/static/css/alliance_station_display.css" />
|
|
</head>
|
|
<body>
|
|
<div id="displayId" class="mode"></div>
|
|
<div id="match" class="mode">
|
|
<div id="preMatch">
|
|
<div id="teamNumber"></div>
|
|
<div id="teamName" class='databar'></div>
|
|
<div id="disabled" class='databar'>DISABLED</div>
|
|
</div>
|
|
<div id="inMatch">
|
|
<div id="redScore" class="datapoint"></div>
|
|
<div id="blueScore" class="datapoint"></div>
|
|
<div id="timeRemaining" class="datapoint"></div>
|
|
</div>
|
|
</div>
|
|
<div id="logo" class="mode">
|
|
<img id="logoImg" src="/static/img/alliance-station-logo.png" alt="logo" />
|
|
</div>
|
|
<script>
|
|
// A unique id to differentiate this station's display from its peers.
|
|
var displayId = "{{.DisplayId}}";
|
|
</script>
|
|
<script src="/static/js/lib/jquery.min.js"></script>
|
|
<script src="/static/js/lib/jquery.json-2.4.min.js"></script>
|
|
<script src="/static/js/lib/jquery.websocket-0.0.1.js"></script>
|
|
<script src="/static/js/cheesy-websocket.js"></script>
|
|
<script src="/static/js/match_timing.js"></script>
|
|
<script src="/static/js/alliance_station_display.js"></script>
|
|
</body>
|
|
</html>
|