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