go-cook-portal/views/home.templ

23 lines
466 B
Plaintext
Raw Normal View History

2024-04-09 07:29:45 -07:00
package views
import "templ-test/views/components/bootstrap"
templ Home() {
@Testing("Home", true) {
<p>
this should be above the alert
</p>
@bootstrap.BootstrapAlert("Testing!", bootstrap.VariantDark)
<p>you should now see this under the Alert </p>
@bootstrap.BootstrapButton("I am in danger", bootstrap.VariantDanger)
@bootstrap.BootstrapButton("I am the darkness", bootstrap.VariantDark)
}
}
templ List() {
@Testing("Lists", true) {
}
}