You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
329 B

{% extends "master.html" %}
{% block title %}Leagues{% endblock %}
{% block content %}
<h1 id="leagues">{{ localize("league_ibihf") }}</h1>
<ol aria-labelledby="leagues">
{% for league in leagues %}
<li><a href="/{{ lang }}/league/{{ league.id }}/">{{ league.name|nullable }}</a></li>
{% endfor %}
</ol>
{% endblock %}