-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
43 lines (38 loc) · 1.5 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple Scoreboard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/cerulean/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body class="d-flex flex-column min-vh-100">
<nav class="navbar navbar-expand-lg navbar-light bg-light mb-4">
<div class="container">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<a class="nav-item nav-link active" aria-current="page" href="/">Home</a>
</ul>
</div>
</div>
</nav>
<main class="container">
<div class="text-center">
<h1>A big "Hello" to all intelligent life forms!</h1>
<p>(And to everyone else out there: the secret is to bang the rocks together, folks!)</p>
</div>
<table align="center">
<tr><th>Name</th><th>Score</th></tr>
{scores}
</table>
</main>
<footer class="mt-auto text-center">
<small>Thank you for participating in this Research Data and Communication Technologies enrichment activity!</small>
</footer>
</body>
</html>