<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="language" content="en" /> <meta name="application-url" content="<?php print Yii::app()->request->baseUrl; ?>" /> <title><?php echo CHtml::encode($this->pageTitle); ?></title> <?php if(YII_DEVELOP) $this->renderPartial("/layouts/_develop"); ?> <?php if(!defined('YII_DEVELOP') || !YII_DEVELOP) { if(YII_DEBUG) $this->renderPartial("/layouts/_debug"); else if(!defined('YII_DEBUG') || !YII_DEBUG) $this->renderPartial("/layouts/_production"); } ?> </head> <body> <?php echo $content; ?> </body> </html>