nixin-backend/header.templ

14 lines
301 B
Text
Raw Permalink Normal View History

2024-10-03 11:11:40 +00:00
package main
// Ordinary Go code that we can use in our Component.
var greeting = "Welcome!"
// templ Component
templ headerTemplate(name string) {
<header>
<h1>{ name }</h1>
@paragraph("coucou paragraphe dans header")
<h2>"{ greeting }" comes from ordinary Go code</h2>
</header>
}