blob: 16bcfbf5c8193932b7102d7513eb5c2cbdd77e24 [file] [log] [blame]
template ProductView(Person person) {
${#with person}
<div>
<span>${name}</span>
<span>-</span>
<span>${age}</span>
</div>
${/with}
}