Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6853 | | 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();
6816 stevensc 4
 
3782 stevensc 5
foreach ($messages as $message) {
6
	$notify .= "$.fn.showInfo('$message')";
1 www 7
}
8
 
9
$messages = $this->flashMessenger()->getSuccessMessages();
3782 stevensc 10
foreach ($messages as $message) {
11
	$notify .= "$.fn.showSuccess('$message')";
1 www 12
}
13
 
14
$messages = $this->flashMessenger()->getWarningMessages();
3782 stevensc 15
foreach ($messages as $message) {
16
	$notify .= " $.fn.showWarning('$message')";
1 www 17
}
18
 
19
$messages = $this->flashMessenger()->getErrorMessages();
3782 stevensc 20
foreach ($messages as $message) {
21
	$notify .= " $.fn.showError('$message')";
1 www 22
}
23
 
3782 stevensc 24
if ($notify) {
25
	$this->inlineScript()->captureStart();
26
	echo " jQuery( document ).ready(function( $ ) { $notify }); ";
27
	$this->inlineScript()->captureEnd();
1 www 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') ?>" />
1 www 60
 
3782 stevensc 61
	<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/nprogress/nprogress.css') ?>">
3639 efrain 62
 
3782 stevensc 63
	<?php
64
	echo $this->headStyle();
65
	echo $this->networkStylesAndColorsHelper();
1 www 66
 
3782 stevensc 67
	echo $this->headLink();
68
	echo $this->headScript();
69
	?>
70
</head>
1 www 71
 
6507 stevensc 72
<body>
73
	<?php echo $this->content ?>
1 www 74
 
6508 stevensc 75
	<footer class="footy-sec container">
6507 stevensc 76
		<img class="fl-rgt" src="<?php echo $this->basePath('/images/LL-08.png') ?>" alt="">
77
		<?php echo $this->footerHelper() ?>
4908 stevensc 78
 
6507 stevensc 79
		<div class="d-flex align-items-center">
80
			<img src="<?php echo $this->basePath('images/copy-icon2.png') ?>" alt="">
81
			<p>CESA MS Copyright <?php echo date('Y') ?></p>
3782 stevensc 82
		</div>
6507 stevensc 83
	</footer>
3731 efrain 84
 
3782 stevensc 85
	<!-- jQuery -->
86
	<script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery/jquery.min.js') ?>"></script>
87
	<!-- Bootstrap 4 -->
88
	<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
89
	<!--  Aplicacion -->
90
	<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>
91
 
92
	<script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
93
 
94
	<?php
95
	echo $this->inlineScript();
96
	?>
97
</body>
98
 
1 www 99
</html>