Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6507 | Rev 6791 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
$notify = '';
3
$messages = $this->flashMessenger()->getInfoMessages();
3782 stevensc 4
foreach ($messages as $message) {
5
	$notify .= "$.fn.showInfo('$message')";
1 www 6
}
7
 
8
$messages = $this->flashMessenger()->getSuccessMessages();
3782 stevensc 9
foreach ($messages as $message) {
10
	$notify .= "$.fn.showSuccess('$message')";
1 www 11
}
12
 
13
$messages = $this->flashMessenger()->getWarningMessages();
3782 stevensc 14
foreach ($messages as $message) {
15
	$notify .= " $.fn.showWarning('$message')";
1 www 16
}
17
 
18
$messages = $this->flashMessenger()->getErrorMessages();
3782 stevensc 19
foreach ($messages as $message) {
20
	$notify .= " $.fn.showError('$message')";
1 www 21
}
22
 
3782 stevensc 23
if ($notify) {
24
	$this->inlineScript()->captureStart();
25
	echo " jQuery( document ).ready(function( $ ) { $notify }); ";
26
	$this->inlineScript()->captureEnd();
1 www 27
}
28
 
29
 
30
?>
31
<!DOCTYPE html>
32
<html>
33
 
3782 stevensc 34
<head>
35
	<?php
36
	echo $this->headTitle();
37
	?>
38
	<link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
39
	<?php
40
	echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
41
		->appendHttpEquiv('expires', '0')
42
		->appendHttpEquiv('expires', 'Tue, 01 Jan 1980 1:00:00 GMT')
43
		->appendHttpEquiv('pragma', 'no-cache')
44
		->appendHttpEquiv('Cache-Control', 'no-store')
45
		->appendHttpEquiv('Cache-Control', 'max-age=0')
46
		->appendHttpEquiv('Cache-Control', 'no-cache')
47
		->appendHttpEquiv('charset', 'UTF-8')
48
		->appendName('viewport', 'width=device-width, initial-scale=1.0');
49
	?>
50
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css') ?>">
51
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.min.css') ?>">
52
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css') ?>">
53
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css') ?>">
54
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css') ?>">
55
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css') ?>">
56
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css') ?>">
57
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css') ?>">
58
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/main.css') ?>" />
59
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('look-and-field/style-cesa.css') ?>" />
60
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css') ?>" />
61
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
1 www 62
 
3782 stevensc 63
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css') ?>">
3639 efrain 64
 
3782 stevensc 65
	<?php
66
	echo $this->headStyle();
67
	echo $this->networkStylesAndColorsHelper();
1 www 68
 
3782 stevensc 69
	echo $this->headLink();
70
	echo $this->headScript();
71
	?>
72
</head>
1 www 73
 
6507 stevensc 74
<body>
75
	<?php echo $this->content ?>
1 www 76
 
6508 stevensc 77
	<footer class="footy-sec container">
6507 stevensc 78
		<img class="fl-rgt" src="<?php echo $this->basePath('/images/LL-08.png') ?>" alt="">
79
		<?php echo $this->footerHelper() ?>
4908 stevensc 80
 
6507 stevensc 81
		<div class="d-flex align-items-center">
82
			<img src="<?php echo $this->basePath('images/copy-icon2.png') ?>" alt="">
83
			<p>CESA MS Copyright <?php echo date('Y') ?></p>
3782 stevensc 84
		</div>
6507 stevensc 85
	</footer>
3731 efrain 86
 
3782 stevensc 87
	<!-- jQuery -->
88
	<script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery/jquery.min.js') ?>"></script>
89
	<!-- Bootstrap 4 -->
90
	<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
91
	<!--  Aplicacion -->
92
	<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>
93
 
94
	<script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
95
 
96
	<?php
97
	echo $this->inlineScript();
98
	?>
99
</body>
100
 
1 www 101
</html>