root/trunk/app/views/elements/lastentries.ctp

Revision 640, 0.6 kB (checked in by aarkerio, 4 months ago)

Updates genrali

Line 
1<?php
2if ( count($Element['Lentry']) > 0):
3  echo $html->image('static/blogactiv.gif',array("alt"=>"Teachers Blogging", "title"=>"Teachers Blogging", "style"=>"margin-right:5px 0 15px 0"));
4endif;
5
6foreach ($Element['Lentry'] as $val):
7    echo $html->div(null, $html->link($val['Entry']['title'],
8                          '/entries/view/'.$val['User']['username'].'/'.$val['Entry']['id']) .
9                           ' <span style="font-size:6pt">'.$val['User']['username'].'</span>',
10                           aa('style', 'margin-top:4px;padding-left:2px')
11                    );
12endforeach;
13?>
Note: See TracBrowser for help on using the browser.