I'm new to Yii and I'm using Bootstrap. I configured it correctly but it is strange in the execution of the page, for example I inserted a button, it is inserted normally only in a simple link form. Why?
<?php /* @var $this SiteController */ $this->pageTitle=Yii::app()->name; ?>
<?php $this->beginWidget('bootstrap.widgets.TbHeroUnit', array( 'heading'=>'Hello, world!', )); ?>
<p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
<p>
<?php $this->widget('bootstrap.widgets.TbButton', array( 'type'=>'primary', 'size'=>'large', 'label'=>'Learn more', )); ?>
</p>
<?php $this->endWidget(); ?>