git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@6 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
24 lines
701 B
PHP
24 lines
701 B
PHP
<!DOCTYPE html>
|
|
<html lang="<?php echo Yii::app()->language; ?>">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><?php echo CHtml::encode($this->pageTitle); ?></title>
|
|
<!-- notifications -->
|
|
<link rel="stylesheet" href="<?php echo Yii::app()->theme->baseUrl; ?>/lib/sticky/sticky.css" />
|
|
|
|
</head>
|
|
<body class="sidebar_right">
|
|
|
|
|
|
<!-- main content -->
|
|
<div id="contentwrapper">
|
|
<div class="main_content">
|
|
<?php echo $content; ?>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|