Files
online-status-htmx-golang/templates/hello.templ
T
2023-09-06 13:57:32 -07:00

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>
}