div(null, 'No hay entradas', array('style'=>'font-size:14pt;color:orange;')); endif; foreach ($data as $v): $tmp = $html->div('etitle', $v['Entry']['title']); $tmp .= $html->div('edate', $v['Entry']['created'].' Theme: '.$v['Theme']['theme'].''); $tmp .= $html->div('ebody', $v['Entry']['body']); if ( $v['Entry']['comments'] == 1): $tmp .= $html->div(null, $html->link('Write a comment', '/entries/view/'.$v['Entry']['id'])); endif; echo $html->div('entry', $tmp); endforeach; ?>