<div class="cbb"> <h3>Current Milliways Users</h3> {if $people|@count < 1} <p>No-one active on Milliways</p> {else} <ul> {foreach name=people from=$people key=personnum item=person} <li>{$person.username} <small>({$person.idle} idle)</small></li> {/foreach} </ul> {/if} </div> <div class="cbb"> <h3>Filthy Milliways Idlers</h3> {if $idlers|@count < 1} <p>Everyone's awake..!</p> {else} <ul> {foreach name=idlers from=$idlers item=person} <li>{$person.username} <small>({$person.idle} idle)</small></li> {/foreach} </ul> {/if} </div>