```php
<?php ob_start(); ?>
<div>Some non-common output</div>
<?php $this->widget('application.components.widgets.SomeReusableWidget'); ?>
<div>Some more non-common output</div>
<?php $this->sidebar = ob_get_clean(); ?>
```
Whichever of these ways you choose to do it, it's better than lots of if statements in your column2.php layout file or repeating the layout in each view file!