22 lines
439 B
HTML
22 lines
439 B
HTML
<html>
|
|
<link rel="stylesheet" href="static/index.css?version={{ version }}">
|
|
{% if title %}
|
|
<head>
|
|
<title>{{ title }} - Buzzer! </title>
|
|
</head>
|
|
{% else %}
|
|
<head><title> Buzzer! </title></head>
|
|
{% endif %}
|
|
<body class="wrap">
|
|
<div class="title">
|
|
<h1> Buzzer! </h1>
|
|
</div>
|
|
<div class="button">
|
|
<center>
|
|
<a href="#">Host Game</a>
|
|
<br><br><br>
|
|
<a href="#">Join Game</a>
|
|
</center>
|
|
</div>
|
|
</body>
|
|
</html> |