Base for a static organization website

default.ctp 241B

12345678910111213
  1. <?php
  2. if (!isset($channel)):
  3. $channel = array();
  4. endif;
  5. if (!isset($channel['title'])):
  6. $channel['title'] = $this->fetch('title');
  7. endif;
  8. echo $this->Rss->document(
  9. $this->Rss->channel(
  10. array(), $channel, $this->fetch('content')
  11. )
  12. );