Yii Menu

Hi, i am novice in Yii and i have a problem, i dont understand how to make a menu.

This is code for menu:




<ul class="dropdown-menu">

<li><a href="#">Russian</a></li>

<li><a href="<?php echo Yii::app()->theme->baseUrl; ?>/site/en/index.php">English</a></li>

<li><a href="#">French</a></li>



on the second li i use this:




<a href="<?php echo Yii::app()->theme->baseUrl; ?>/site/en/index.php">



but this is not working, any idea how to make this to work.

P.S. sry for my english :)

Shouldn’t it be this?


<a href="<?php echo Yii::app()->baseUrl; ?>/site/en/index.php">

Surely you don’t have a controller in the themes folder?

No, i dont have a controller.