mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
16 lines
298 B
HTML
16 lines
298 B
HTML
<html>
|
|
<head>
|
|
<title>{{ year }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>CSL {{ year }}</h1>
|
|
<ul>
|
|
{% for team in teams %}
|
|
<li class="{% if loop.index0 == 0 %}champion{% endif %}">
|
|
<b>{{ team.name }}</b>: {{ team.score }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|