mirror of
https://github.com/acaloiaro/hugo-htmx-go-template
synced 2026-07-21 18:29:14 +00:00
11 lines
148 B
Text
11 lines
148 B
Text
|
|
package partials
|
||
|
|
|
||
|
|
templ HelloWorldGreeting(name string) {
|
||
|
|
<h3>Greeting: Hello, { name }!</h3>
|
||
|
|
}
|
||
|
|
|
||
|
|
templ GoodbyeWorld() {
|
||
|
|
<p>Goodbye, World!</p>
|
||
|
|
}
|
||
|
|
|