Very good. Thank you very much for a very efficient and effective introduction to Templ.
@MoreThanCoder29 күн бұрын
Glad it was helpful!
@SauravKumar-z4o7m10 ай бұрын
Hi Bro. Could you please tell, how you setup templ on your mac.
@higiniofuentes25513 ай бұрын
Thank you for this very useful video!
@jeremyn.657810 ай бұрын
I really like your tutorial on Templ. Fantastic explanation. Keep up the good work! I am looking forward to further parts
@nesocode10 ай бұрын
Thank you, great tutorial and great topic
@hunter_gatherer91845 ай бұрын
So I won't have auto-completion in templ templates?
@MoreThanCoder5 ай бұрын
You would, they have IDE support on their site templ.guide/commands-and-tools/ide-support
@JuanRamos-be2nm9 ай бұрын
after I ran templ generate my templ Hello function is not recognized in my main.go . It says undefined
@bam04f9 ай бұрын
Did you use "go run main.go"? That won't work if so. You would need to run it with "go run ."
@mbahmusalto6 ай бұрын
nice video, thanks! and the I'm using vim btw is always necessary 😂
@kiranshrestha43924 ай бұрын
Which lsp are you using ??
@johnartiflas464810 ай бұрын
Awesome, great series. Thank you so much
@mahatahir150110 ай бұрын
Terrific 👌🏻
@_KondoIsami_7 ай бұрын
thanks that was what I needed
@minor1282823 күн бұрын
Bro every time you hit enter I suffer deep inside.
@MoreThanCoder19 күн бұрын
I'll make sure to hit it gently next time xD
@nomadtrails4 ай бұрын
Constructive criticism: skip the reading line-by-line of the installation instructions and showing us how to copy paste, its not necessary, you can just skip straight to code.
@YouReyKarr7 ай бұрын
KZbinrs keep making videos with Templ, touting its features. They never say why you'd use it over http/template, and they never make more than a couple of videos. I can't find the value, for it to be such a ball ache to compile
@MoreThanCoder7 ай бұрын
its generally a new way to create html templates, thats way there is no full series, on whty using it over standard html template, is because its more flexible and has very high potential, im currently working on a project with templ and other tech after finishing this project i will make a series with everything you need to work with templ.
@YouReyKarr7 ай бұрын
@@MoreThanCoder “because it’s more flexible and has very high potential” I mean that’s what it says on the tin, and what everyone repeats, but how?
@MarcoDamaceno5 ай бұрын
@@YouReyKarr have you ever used Laravel or Ruby on Rails? They have template builders that allow you to nest template fragments easily. You can define a layout and yield fragments in it. It's possible to do the same with the vanilla go template, but you'll probably have some limitations. Templ makes this appear easy to do without the boilerplates of go template.