18 lines
457 B
Plaintext
18 lines
457 B
Plaintext
package home
|
|
|
|
import "templ-test/views/components/bootstrap"
|
|
import "templ-test/views/layout"
|
|
|
|
templ Home() {
|
|
@layout.WithLayout("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)
|
|
|
|
}
|
|
}
|