36 lines
1.6 KiB
PHP
36 lines
1.6 KiB
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>
|
||
|
|
|
||
|
|
<!-- Bootstrap CSS -->
|
||
|
|
<link rel="stylesheet" href="<?php echo Yii::app()->theme->baseUrl; ?>/bootstrap/css/bootstrap.min.css" />
|
||
|
|
<link rel="stylesheet" href="<?php echo Yii::app()->theme->baseUrl; ?>/bootstrap/css/bootstrap-responsive.min.css" />
|
||
|
|
|
||
|
|
<!-- Estilos -->
|
||
|
|
<link rel="stylesheet" href="<?php echo Yii::app()->theme->baseUrl; ?>/css/profind.css" />
|
||
|
|
<link rel="stylesheet" href="<?php echo Yii::app()->theme->baseUrl; ?>/css/media.css" />
|
||
|
|
<link rel="stylesheet" href="<?php echo Yii::app()->theme->baseUrl; ?>/css/azul.css" />
|
||
|
|
|
||
|
|
<!-- Favicon -->
|
||
|
|
<link rel="shortcut icon" href="favicon.ico" />
|
||
|
|
</head>
|
||
|
|
<body class="sidebar_hidden profind-fixed error_page">
|
||
|
|
<div id="maincontainer" class="clearfix">
|
||
|
|
<!-- contenido -->
|
||
|
|
<div id="contentwrapper">
|
||
|
|
<div class="main_content">
|
||
|
|
<?php echo $content; ?>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Bootstrap JS -->
|
||
|
|
<script src="<?php echo Yii::app()->theme->baseUrl; ?>/bootstrap/js/bootstrap.min.js"></script>
|
||
|
|
<!-- Arreglo orientación en iOS -->
|
||
|
|
<script src="<?php echo Yii::app()->theme->baseUrl; ?>/js/ios-orientationchange-fix.js"></script>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|