diff --git a/components/templ-html/br.templ b/components/bulma/html/br.templ similarity index 57% rename from components/templ-html/br.templ rename to components/bulma/html/br.templ index 13177ec..f62f03a 100644 --- a/components/templ-html/br.templ +++ b/components/bulma/html/br.templ @@ -1,4 +1,4 @@ -package templhtml +package html templ Br(){
diff --git a/components/templ-html/href.templ b/components/bulma/html/href.templ similarity index 91% rename from components/templ-html/href.templ rename to components/bulma/html/href.templ index 038cbdb..87a353c 100644 --- a/components/templ-html/href.templ +++ b/components/bulma/html/href.templ @@ -1,4 +1,4 @@ -package templhtml +package html templ ALink(url, title string) { { title } diff --git a/components/bulma/html/html.templ b/components/bulma/html/html.templ new file mode 100644 index 0000000..ad16efe --- /dev/null +++ b/components/bulma/html/html.templ @@ -0,0 +1,26 @@ +package html + +templ Doctype() { + +} + +// Creates that accepts children +templ New(lang string) { + + { children... } + +} + +// Creates that accepts children +templ NewHeader() { + + { children... } + +} + +// Creates that accepts children +templ NewBody() { + + { children... } + +}