Template
1
0
Fork 0
goth-stack/view/components.templ
2025-03-15 20:59:35 +01:00

17 lines
225 B
Text

package view
templ ErrorPage(message string) {
@Base() {
<main class="container">
<h1>{ message }</h1>
</main>
}
}
templ Card() {
<article>
<header>Header</header>
Body
<footer>Footer</footer>
</article>
}