tAdd copyright on scoreboard - scoreboard - Interactive scoreboard for CTF-like games
(HTM) git clone git://git.z3bra.org/scoreboard.git
(DIR) Log
(DIR) Files
(DIR) Refs
---
(DIR) commit 9caf11da5e4b7f174ddc63868d316486dcec7a4c
(DIR) parent 574274c9d77481b0c1f593502f3990c381ba3936
(HTM) Author: Willy Goiffon <contact@z3bra.org>
Date: Wed, 20 Sep 2023 14:45:02 +0200
Add copyright on scoreboard
Diffstat:
M html.go | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/html.go b/html.go
t@@ -32,7 +32,7 @@ var html string = `
<link rel="icon" type="image/ico" href="/favicon.ico" />
<title>High scores</title>
</head>
-<body>
+<body class=flex>
<h1 class="title glitch" data-text="CYB3R HUNT">CYB3R HUNT</h1>
<h2>HIGH SCORES</h2>
<div class="board">
t@@ -46,6 +46,8 @@ var html string = `
</tbody>
</table>
</div>
+<div style="flex-grow:2"></div>
+<p class='copyright'>Copyright (C) <a href="https://z3bra.org">Z3BRA</a>, 2022-2106</p>
</body>
</html>
`