Files
open-web-leaderboard/base.html
2019-06-08 18:08:56 +02:00

25 lines
893 B
HTML

<html>
<head>
<link rel="stylesheet" type="text/css" href="site.css">
</head>
<body>
<div class=top-bar>
<div class=top-button>Forward</div>
<div class=top-button>Backward</div>
<div class=top-button>Top 100</div>
<input class=input-field>
<input class=input-field>
</div>
<div class=leaderboard-container>
{% for player in playerList %}
<option value="">{{country}}</option>
{% endfor %}
</div>
<div class=footer>
<a class="footerLink" href="https://blog.atlantishq.de/about">Impressum/Legal</a>
<a class="footerLink mid" href="https://github.com/FAUSheppy/">Other Projects</a>
<a class="footerLink" href="https://github.com/FAUSheppy/skillbird">Star on GitHub</a>
</div>
</body>
</html>