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

Revision 272, 434 bytes (checked in by aarkerio, 9 months ago)

Update karamelo to 1.2 cake version

Line 
1
2<?php echo $html->addCrumb('Home', '/'); ?>
3<?php echo $html->getCrumbs(' / '); ?>
4
5<div class="title_section"> Podcasts </div>
6
7<p><?php echo $html->link('Date', '/podcasts/lastentries/created/DESC') ?></p>
8
9<?
10foreach ($data as $key => $val) {
11    echo '<p><b>Author</b>: '.$data[$key]['Podcast']['name'].' ';
12    echo ' <a href="/users/blog/'.$data[0]['User']['username'].'/">'.$data[$key]['User']['name_blog'].'</a></p>';
13}
14?>
Note: See TracBrowser for help on using the browser.