15 lines
221 B
Plaintext
15 lines
221 B
Plaintext
package testhtml
|
|
|
|
templ BasicTemplate(url string) {
|
|
<div>
|
|
<a href={ templ.URL(url) }>text</a>
|
|
</div>
|
|
<div>
|
|
<button
|
|
hx-post="/click"
|
|
hx-trigger="click"
|
|
hx-vals='{"val":"Value"}'
|
|
>Click</button>
|
|
</div>
|
|
}
|