14 lines
299 B
Plaintext
14 lines
299 B
Plaintext
package homeview
|
|
|
|
import "git.haelnorr.com/h/oslstats/internal/view/baseview"
|
|
|
|
// Page content for the index page
|
|
templ IndexPage() {
|
|
@baseview.Layout("OSL Stats") {
|
|
<div class="text-center mt-25">
|
|
<div class="text-4xl lg:text-6xl">OSL Stats</div>
|
|
<div>Placeholder text</div>
|
|
</div>
|
|
}
|
|
}
|