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

25 lines
881 B
Handlebars
Raw Normal View History

2024-04-14 14:25:56 -06:00
<div class="container" id="club-page-body">
2024-04-14 12:49:37 -06:00
2024-04-14 14:25:56 -06:00
<!-- Container for all club information (logo, name, country, etc. ) <- top 100px -->
<div class="container" id="club-information-container">
<img id="club-logo" src="{{club.crest}}" alt="{{club.name}} Emblem">
<h1 id="club-title">{{club.name}}</h2>
<img id="club-flag" src="{{club.area.club_flag}}" alt="{{club.clubData.name}} Flag">
2024-04-14 12:49:37 -06:00
</div>
2024-04-14 14:25:56 -06:00
<!-- Container to display all stats for club <- bottom rest of the container -->
<div class="container" id="club-stats-container">
2024-04-14 12:49:37 -06:00
2024-04-14 14:25:56 -06:00
<!-- Container to display club table <- split 50% -->
<div class="container" id="club-players-container">
2024-04-14 12:49:37 -06:00
</div>
2024-04-14 14:25:56 -06:00
<!-- Container to display top scorers for club <- Split 50% -->
2024-04-14 12:49:37 -06:00
<div class="container" id="top-scorers-container">
</div>
</div>
</div>