Files
JellySport/ProjectSourceCode/src/views/pages/league-page.hbs

41 lines
1019 B
Handlebars
Raw Normal View History

<!-- league-page.hbs -->
<!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>
<!-- Display league emblem -->
{{#if leagueEmblem}}
<img src="{{ leagueEmblem }}" alt="{{ leagueName }} Emblem">
{{/if}}
<!-- 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>