my eye

results.html

$def with (query, people, posts)
$var title: Results for $query

<ul>
$for person in people:
    <li>$dict(person)</li>
    $# <li><a href=/$person["url"]>$dict(person)</a></li>
</ul>

<ul>
$for post in posts:
    <li><a href=/$post["url"]>$dict(post)</a></li>
</ul>