learnlytics-go/templ/generator/test-html/template.templ
2025-03-20 12:35:13 +01:00

15 lines
413 B
Plaintext

package testhtml
templ render(p person) {
<div>
<h1>{ p.name }</h1>
<div style="font-family: 'sans-serif'" id="test" data-contents={ `something with "quotes" and a <tag>` }>
<div>email:<a href={ templ.URL("mailto: " + p.email) }>{ p.email }</a></div>
</div>
</div>
<hr noshade?={ true }/>
<hr optionA optionB?={ true } optionC="other" optionD?={ false }/>
<hr noshade/>
<input name="test"/>Text
}