-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleague.html
More file actions
87 lines (81 loc) · 3.08 KB
/
league.html
File metadata and controls
87 lines (81 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!-- LIGA PAGE -->
<div class="league-header">
<h1 class="league-title">LIGA</h1>
<p class="league-subtitle">Spielplan, Tabellen & Statistiken</p>
</div>
<!-- League Selector -->
<div class="league-selector-container glass">
<div class="selector-label">Liga wählen:</div>
<div class="league-selector-buttons" id="leagueSelector">
<button class="league-selector-btn active" data-league="1">Liga 1</button>
<button class="league-selector-btn" data-league="2">Liga 2</button>
<button class="league-selector-btn" data-league="3">Liga 3</button>
<button class="league-selector-btn" data-league="4">Liga 4</button>
<button class="league-selector-btn" data-league="5">Liga 5</button>
</div>
</div>
<!-- Schedule Section -->
<div class="schedule-section">
<div class="section-header">
<h2 class="section-title">📅 Spielplan</h2>
<div class="matchday-navigation">
<button class="nav-arrow" id="prevMatchday">◀</button>
<span class="current-matchday" id="currentMatchday">Spieltag 1</span>
<button class="nav-arrow" id="nextMatchday">▶</button>
</div>
</div>
<div class="schedule-container" id="scheduleContainer">
<!-- Matches will be rendered here -->
</div>
</div>
<!-- Table Section -->
<div class="table-section">
<div class="section-header">
<h2 class="section-title">📊 Tabelle</h2>
<div class="table-tabs">
<button class="table-tab active" data-table="overall">Gesamt</button>
<button class="table-tab" data-table="home">Heim</button>
<button class="table-tab" data-table="away">Auswärts</button>
</div>
</div>
<div class="table-container glass">
<table class="league-table" id="leagueTable">
<thead>
<tr>
<th class="col-pos">Pl</th>
<th class="col-team">Team</th>
<th class="col-stat">Sp</th>
<th class="col-stat">S</th>
<th class="col-stat">U</th>
<th class="col-stat">N</th>
<th class="col-stat">Tore</th>
<th class="col-stat">Diff</th>
<th class="col-stat">Pkt</th>
<th class="col-form">Form</th>
</tr>
</thead>
<tbody id="tableBody">
<!-- Table rows will be rendered here -->
</tbody>
</table>
</div>
<!-- Legend -->
<div class="table-legend">
<div class="legend-item">
<div class="legend-color legend-champions"></div>
<span>Champions League</span>
</div>
<div class="legend-item">
<div class="legend-color legend-europa"></div>
<span>Europa League</span>
</div>
<div class="legend-item">
<div class="legend-color legend-relegation"></div>
<span>Abstieg</span>
</div>
<div class="legend-item">
<div class="legend-color legend-player"></div>
<span>Dein Team</span>
</div>
</div>
</div>