1<!DOCTYPE html>
2<html lang="<?php echo App()->language; ?>"<?php if(getLanguageRTL(Yii::app()->language)) {echo 'dir="rtl"';}?> >
3    <head>
4        <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
5        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6        <?php
7            App()->bootstrap->register();
8            App()->getClientScript()->registerPackage('jqueryui');
9        ?>
10        <link rel="shortcut icon" href="<?php echo Yii::app()->getConfig('publicstyleurl'); ?>favicon.ico" type="image/x-icon" />
11        <link rel="icon" href="<?php echo Yii::app()->getConfig('publicstyleurl'); ?>favicon.ico" type="image/x-icon" />
12        <?php $this->widget('ext.LimeScript.LimeScript'); ?>
13        <?php //$this->widget('ext.LimeDebug.LimeDebug'); ?>
14        <title><?php echo $this->pageTitle; ?></title>
15    </head>
16    <body>
17        <div class="wrapper clearfix">
18            <div id="content">
19                <?php echo $content; ?>
20            </div>
21        </div>
22    </body>
23
24</html>
25