Preliminary comments added to clubs-page.hbs

This commit is contained in:
Lucas Patenaude
2024-04-15 16:16:47 -06:00
parent 30f005300c
commit 103b2e8a46

View File

@@ -1,11 +1,3 @@
<!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>
<div class="container" id="club-page-body">
<div class="container" id="club-stats-container">
<div class="container" id="club-players-container">
@@ -34,33 +26,39 @@
</table>
</div>
<div class="container" id="top-scorers-container">
<!-- Container to Club Information -->
<div class="information-container" id="club-information-container">
<h2>Information</h2>
<ul id="scorers-list"></ul>
<table id="top-scorers-table" class = "table">
<tbody>
<tr>
<td id = "club-crest">
<img src = {{club.crest}}>
</td>
</tr>
<tr>
<td id = "club-area-flag-row">
<img id = "club-area-flag" src = {{club.area.club_flag}}>
</td>
</tr>
<tr>
<td>
<span style="font-weight: bold;">Club Address:</span><br>
{{club.address}}
</td>
</tr>
<tr>
<td>
<span style="font-weight: bold;">Founded</span><br>
{{club.founded}}
</td>
</tr>
<tr>
<td>
<span style="font-weight: bold;">Manager</span><br>
@@ -91,10 +89,5 @@
{{/each}}
</tbody>
</table>
</div>
</div>
</body>
</html>