HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
main.php
Go to the documentation of this file.
1 <?php
7 Yii::app()->getClientScript()
8  ->addPackage('yii2-debug', array(
9  'baseUrl' => CHtml::asset(Yii::getPathOfAlias('yii2-debug.assets')),
10  'js' => array(
11  YII_DEBUG ? 'js/bootstrap.js' : 'js/bootstrap.min.js',
12  'js/filter.js',
13  ),
14  'css' => array(
15  YII_DEBUG ? 'css/bootstrap.css' : 'css/bootstrap.min.css',
16  'css/main.css',
17  ),
18  'depends' => array('jquery'),
19  ))
20  ->registerPackage('yii2-debug');
21 ?>
22 <!DOCTYPE html>
23 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo Yii::app()->language; ?>" lang="<?php echo Yii::app()->language; ?>">
24 <head>
25  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
26  <title><?php echo CHtml::encode($this->pageTitle); ?></title>
27 </head>
28 <body>
29  <?php echo $content; ?>
30 </body>
31 </html>