default.ctp 237 Bytes
<?php
if (!isset($channel)) :
    $channel = [];
endif;
if (!isset($channel['title'])) :
    $channel['title'] = $this->fetch('title');
endif;

echo $this->Rss->document(
    $this->Rss->channel([], $channel, $this->fetch('content'))
);