blob: 2dee107337dcefdb0cbc579c85719be51f6614b0 [file] [log] [blame]
template TopSearches(Person person, var searches) {
<div>
${#with person}
<div>
<span>${name},&nbsp;</span>
<span>age&nbsp;=&nbsp;</span>
<span>${age}</span>
</div>
${#each searches search}
<div>
<span style="margin-left: 10px;">query=${search.query}</span>
<span style="margin-left: 20px;">hits=${search.total}</span>
</div>
${/each}
${/with}
</div>
}