33 lines
1.2 KiB
Handlebars
33 lines
1.2 KiB
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<link rel='stylesheet' href='/stylesheets/bootstrap/bootstrap.min.css' />
|
|
<link rel='stylesheet' href='/stylesheets/indexScore.css' />
|
|
<link rel='stylesheet' href='/stylesheets/seven-segment.css' />
|
|
</head>
|
|
<body onload="initialUpdate()">
|
|
|
|
<div class="d-flex flex-column align-items-center justify-content-center box-time">
|
|
<div id="durationLeft" class="durationLeft">{{ durationLeft }}</div>
|
|
</div>
|
|
|
|
|
|
<div class="d-flex flex-sm-wrap flex-md-wrap text-center align-items-center justify-content-around box-etc">
|
|
<div class="flex-fill order-xs-1 order-sm-1 order-md-1 order-lg-0">
|
|
<h1 id="scoreTeamA">Team A</h>
|
|
</div>
|
|
<div class="flex-fill order-xs-0 order-sm-0 order-md-0 order-lg-1">
|
|
<div id="score" class="score"></div>
|
|
</div>
|
|
<div class="flex-fill order-xs-2 order-sm-2 order-md-2 order-lg-2">
|
|
<h1 id="scoreTeamB">Team B</h>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
<script src='/javascripts/bootstrap/bootstrap.bundle.min.js'></script>
|
|
<script src="/javascripts/socket.io.min.js"></script>
|
|
<script src="/javascripts/moment.js"></script>
|
|
<script src="/javascripts/indexScore.js"></script>
|
|
</html> |