13 lines
376 B
Plaintext
13 lines
376 B
Plaintext
package templates
|
|
|
|
templ Hello(name string) {
|
|
<head>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="https://unpkg.com/htmx.org@1.9.5" integrity="sha384-xcuj3WpfgjlKF+FXhSQFQ0ZNr39ln+hwjN3npfM9VBnUskLolQAcN80McRIVOPuO" crossorigin="anonymous"></script>
|
|
</head>
|
|
|
|
<div>Hello, { name }</div>
|
|
|
|
<button hx-post="/" hx-target="body">test</button>
|
|
}
|