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

65 lines
1.9 KiB
Handlebars
Raw Normal View History

2024-04-15 11:56:19 -06:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Club Details</title>
</head>
<body>
2024-04-14 14:25:56 -06:00
<div class="container" id="club-page-body">
<div class="container" id="club-information-container">
2024-04-15 11:56:19 -06:00
<img id="club-logo" src="{{club.crest}}" alt="Club Emblem">
<h1 id="club-title"></h1>
<img id="club-flag" src="{{club.area.club_flag}}" alt="Club Flag">
2024-04-14 12:49:37 -06:00
</div>
2024-04-15 11:56:19 -06:00
<div>
<p id="club-founded"></p>
<p id="club-website"></p>
<p id="club-address"></p>
<p id="club-colors"></p>
</div>
2024-04-14 12:49:37 -06:00
2024-04-15 11:56:19 -06:00
<div class="container" id="club-stats-container">
2024-04-14 14:25:56 -06:00
<div class="container" id="club-players-container">
2024-04-15 11:56:19 -06:00
<h2>Players</h2>
<ul id="players-list"></ul>
<table id="players-table">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>DOB</th>
<th>Nationality</th>
</tr>
</thead>
<tbody>
{{#each club.squad}}
<tr>
<td>{{name}}</td>
<td>{{position}}</td>
<td>{{dateOfBirth}}</td>
<td>{{nationality}}</td>
</tr>
{{/each}}
</tbody>
</table>
2024-04-14 12:49:37 -06:00
</div>
<div class="container" id="top-scorers-container">
2024-04-15 11:56:19 -06:00
<h2>Top Scorers</h2>
<ul id="scorers-list"></ul>
2024-04-14 12:49:37 -06:00
</div>
2024-04-15 11:56:19 -06:00
<div class="container" id="competitions-container">
<h2>Competitions</h2>
<ul id="competitions-list"></ul>
</div>
2024-04-14 12:49:37 -06:00
</div>
</div>
2024-04-15 11:56:19 -06:00
</body>
</html>