2024-04-13 15:09:24 -06:00
|
|
|
<!-- league-page.hbs -->
|
2024-04-11 06:04:08 -06:00
|
|
|
|
2024-04-13 15:09:24 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>{{ league_name }}</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>{{ leagueID }}</h1>
|
|
|
|
|
<h1>{{ league_name }}</h1>
|
2024-04-11 06:04:08 -06:00
|
|
|
|
2024-04-13 15:09:24 -06:00
|
|
|
<!-- Display league emblem -->
|
|
|
|
|
{{#if leagueEmblem}}
|
|
|
|
|
<img src="{{ leagueEmblem }}" alt="{{ leagueName }} Emblem">
|
|
|
|
|
{{/if}}
|
2024-04-11 06:04:08 -06:00
|
|
|
|
2024-04-13 15:09:24 -06:00
|
|
|
<!-- Display league standings -->
|
|
|
|
|
<h2>Standings</h2>
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Position</th>
|
|
|
|
|
<th>Team</th>
|
|
|
|
|
<th>Crest</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#each standings}}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ this.league_position }}</td>
|
|
|
|
|
<td>{{ this.team_name }}</td>
|
|
|
|
|
<td><img src="{{ this.team_crest }}" alt="{{ this.team_name }} Crest"></td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|