q3_server_status/templates/status.j2.html

19 lines
446 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<title>quake3-server-status</title>
<style>
2020-04-17 14:01:32 +02:00
body {
2020-04-18 04:35:16 +02:00
background-color: black;
font-family: Inconsolata, monospace;
color: white;
2020-04-17 14:01:32 +02:00
font-size: 3em;
text-shadow: 0 0 20px #04ff3a;
}
</style>
</head>
<body>
2020-04-17 14:08:01 +02:00
The server {{ server_name }} is currently playing map {{ current_map }} with {{ human_players_count }} human player(s) and {{ bots_players_count }} bot(s)
</body>
</html>