adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / src / Template / Layout / rss / default.ctp
1 <?php
2 if (!isset($channel)):
3     $channel = [];
4 endif;
5 if (!isset($channel['title'])):
6     $channel['title'] = $this->fetch('title');
7 endif;
8
9 echo $this->Rss->document(
10     $this->Rss->channel(
11         [], $channel, $this->fetch('content')
12     )
13 );
14 ?>