{extends layout.latte} {block title} Persons list {/block} {block body}

Add new person {foreach $persons_list as $p} {/foreach}
First name Last name Height Gender
{$p['first_name']} {$p['last_name']} {$p['height']} {$p['gender']}
{/block}