16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
package seasonsview
|
|
|
|
import "git.haelnorr.com/h/oslstats/internal/db"
|
|
|
|
templ SeasonLeagueStatsPage(season *db.Season, league *db.League) {
|
|
@SeasonLeagueLayout("stats", season, league) {
|
|
@SeasonLeagueStats()
|
|
}
|
|
}
|
|
|
|
templ SeasonLeagueStats() {
|
|
<div class="bg-surface0 border border-surface1 rounded-lg p-8 text-center">
|
|
<p class="text-subtext0 text-lg">Coming Soon...</p>
|
|
</div>
|
|
}
|