Files
ScoreSpot/public/views/partials/club-page/player-card.hbs

20 lines
567 B
Handlebars
Raw Normal View History

2024-04-11 08:55:35 -06:00
<div class="player-card" id="player-card">
<div class="player-card-body">
<table class="table">
<thead>
<tr>
<th>Player Name</th>
<th>Nationality</th>
2024-04-11 09:19:19 -06:00
<th>Position</th>
2024-04-11 08:55:35 -06:00
</tr>
</thead>
<tbody>
<tr>
<td>persons.name</td>
<td>persons.nationality</td>
2024-04-11 09:19:19 -06:00
<td>persons.position</td>
2024-04-11 08:55:35 -06:00
</tr>
</tbody>
</table>
</div>
</div>