updated season league view page

This commit is contained in:
2026-02-14 21:08:00 +11:00
parent 4a2396bca8
commit 61890ae20b
23 changed files with 791 additions and 302 deletions

View File

@@ -0,0 +1,15 @@
package seasonsview
import "git.haelnorr.com/h/oslstats/internal/db"
templ SeasonLeagueFixturesPage(season *db.Season, league *db.League) {
@SeasonLeagueLayout("fixtures", season, league) {
@SeasonLeagueFixtures()
}
}
templ SeasonLeagueFixtures() {
<div class="bg-surface0 border border-surface1 rounded-lg p-8 text-center">
<p class="text-subtext0 text-lg">Coming Soon...</p>
</div>
}