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

37 lines
1.1 KiB
Handlebars
Raw Normal View History

2024-04-13 15:19:16 -06:00
<!-- pages/league.hbs -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-04-13 15:19:16 -06:00
<title>League Information</title>
</head>
<body>
2024-04-13 15:19:16 -06:00
<h1>League Information</h1>
<p>League ID: {{leagueID}}</p>
{{#if leagues}}
<ul>
{{#each leagues}}
<li>
<h2>{{competition.league_name}}</h2>
<img src="{{competition.league_emblem}}" alt="{{competition.league_name}} Emblem">
<h3>Standings</h3>
<ol>
{{#each standings}}
<li>
<span>Position: {{table.league_position}}</span>
<span>Team Name: {{table.team_name}}</span>
<img src="{{table.team_crest}}" alt="{{table.team_name}} Crest">
</li>
{{/each}}
</ol>
</li>
{{/each}}
2024-04-13 15:19:16 -06:00
</ul>
{{else}}
<p>No league data available</p>
{{/if}}
</body>
</html>