root/trunk/app/views/catglossaries/view.ctp
| Revision 699, 389 bytes (checked in by aarkerio, 4 months ago) |
|---|
| Line | |
|---|---|
| 1 | <h1><?php echo $data['Catglossary']['title']; ?></h1> |
| 2 | <?php |
| 3 | //exit(debug($data)); |
| 4 | if ( count($data['Glossary']) < 1): |
| 5 | echo $html->para(null, '<b>'.__('No items yet', true).'</b>'); |
| 6 | endif; |
| 7 | |
| 8 | foreach ($data['Glossary'] as $v): |
| 9 | echo $html->div(null, '<b>'. $v['item'].'</b><br /><br />'. $v['definition'], aa('style','border:1px dotted gray;padding:8px;margin:8px;')); |
| 10 | endforeach; |
| 11 | ?> |
Note: See TracBrowser
for help on using the browser.
