Where would I go about editing a already made framework like the full html

So I have a prepaid site and in the main.php it has:

<div id="outer">





<?php


    if (!$simple)


    {


        array_pop($this->breadcrumbs);


        $this->widget('zii.widgets.CBreadcrumbs', array(


            'homeLink'=>'',


            'links'=>$this->breadcrumbs,


        ));


    }


?><!-- breadcrumbs -->











<?php echo $content; ?>

Where would I edit the $content; ??

This is from Yii1.

The $content variable will be replaced by what the current action returns.