23 lines
750 B
Handlebars
23 lines
750 B
Handlebars
<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">
|
|
|
|
<!-- Container to display league table <- split 50% -->
|
|
<div class="container" id="league-table-container">
|
|
|
|
|
|
</div>
|
|
|
|
<!-- Container to display top scorers for league <- Split 50% -->
|
|
<div class="container" id="top-scorers-container">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div> |