19 lines
446 B
Plaintext
19 lines
446 B
Plaintext
package example
|
|
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma"
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma/html"
|
|
import "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma/layout"
|
|
|
|
templ example() {
|
|
@html.Doctype()
|
|
@html.New("en"){
|
|
@html.NewHeader(){
|
|
@bulma.UseBulmaCdn()
|
|
}
|
|
@html.NewBody() {
|
|
@layout.Container(bulma.BreakpointDefault) {
|
|
{ children... }
|
|
}
|
|
}
|
|
}
|
|
} |