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

23 lines
750 B
Handlebars
Raw Normal View History

<div class="container" id="league-page-body">
<!-- Container for all league information (logo, name, country, etc. ) <- top 100px -->
<div class="container" id="league-information-container">
<img src="{{ competition.league_emblem }}" alt="League Emblem">
</div>
<!-- Container to display all stats for league <- bottom rest of the container -->
<div class="container" id="league-stats-container">
2024-04-11 06:07:35 -06:00
<!-- Container to display league table <- split 50% -->
<div class="container" id="league-table-container">
2024-04-11 09:04:41 -06:00
</div>
2024-04-11 06:07:35 -06:00
<!-- Container to display top scorers for league <- Split 50% -->
<div class="container" id="top-scorers-container">
</div>
</div>
</div>