Merge branch 'clubpages'

* clubpages:
  player-info API routes start
  player info
This commit is contained in:
Lucas Patenaude
2024-04-14 13:57:22 -06:00
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<div class="player-card" id="player-card">
<div class="player-card-body">
<table class="table">
<thead>
<tr>
<th>Player Name</th>
<th>Nationality</th>
<th>Position</th>
</tr>
</thead>
<tbody>
<tr>
<td>persons.name</td>
<td>persons.nationality</td>
<td>persons.position</td>
</tr>
</tbody>
</table>
</div>
</div>

View File

@@ -0,0 +1,7 @@
<div class="playerinfo-table" id="playerinfo">
<div class="playerinfo-container">
{{#each persons}}
{{> player-info/playerinfo}}
{{/each}}
</div>
</div>