Learning-HTMX/hello.templ
efim de2fd2bdc0 feat: Makefile for local development
would be even more useful when i'll get tailwind and stuff
2024-03-11 07:32:28 +00:00

11 lines
187 B
Plaintext

package main
var myVar string = "some string, changed. and more"
var anotherVar string = "hoho, cool"
templ hello(name string) {
<div>Hello, {name}. referencing var: {myVar}</div>
}