13 lines
343 B
HTML
13 lines
343 B
HTML
<html>
|
|
<head>
|
|
<title>{% block title %}Wer bin ich{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
.current_player_indicator { font-size: x-large; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|