3298 |
efrain |
1 |
<?php
|
|
|
2 |
use LeadersLinked\Library\Functions;
|
|
|
3 |
use LeadersLinked\Model\UserType;
|
|
|
4 |
|
|
|
5 |
$notify = '';
|
|
|
6 |
$messages = $this->flashMessenger()->getInfoMessages();
|
|
|
7 |
foreach ($messages as $message) {
|
|
|
8 |
$notify .= "$.fn.showInfo('$message')";
|
|
|
9 |
}
|
|
|
10 |
|
|
|
11 |
$messages = $this->flashMessenger()->getSuccessMessages();
|
|
|
12 |
foreach ($messages as $message) {
|
|
|
13 |
$notify .= "$.fn.showSuccess('$message')";
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
$messages = $this->flashMessenger()->getWarningMessages();
|
|
|
17 |
foreach ($messages as $message) {
|
|
|
18 |
$notify .= " $.fn.showWarning('$message')";
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
$messages = $this->flashMessenger()->getErrorMessages();
|
|
|
22 |
foreach ($messages as $message) {
|
|
|
23 |
$notify .= " $.fn.showError('$message')";
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
if ($notify) {
|
|
|
27 |
$this->inlineScript()->captureStart();
|
|
|
28 |
echo " jQuery( document ).ready(function( $ ) { $notify }); ";
|
|
|
29 |
$this->inlineScript()->captureEnd();
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
$acl = $this->viewModel()->getRoot()->getVariable('acl');
|
|
|
34 |
|
|
|
35 |
?>
|
|
|
36 |
|
|
|
37 |
<!DOCTYPE html>
|
|
|
38 |
<html>
|
|
|
39 |
|
|
|
40 |
<head>
|
4896 |
stevensc |
41 |
<?php
|
|
|
42 |
echo $this->headTitle();
|
|
|
43 |
?>
|
|
|
44 |
<link rel="icon" href="<?php echo $this->networkFavicoHelper(); ?>">
|
|
|
45 |
<?php
|
3298 |
efrain |
46 |
echo $this->headMeta()->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
|
|
47 |
->appendHttpEquiv('expires', '0')
|
|
|
48 |
->appendHttpEquiv('expires', 'Tue, 01 Jan 1980 1:00:00 GMT')
|
|
|
49 |
->appendHttpEquiv('pragma', 'no-cache')
|
|
|
50 |
->appendHttpEquiv('Cache-Control', 'no-store')
|
|
|
51 |
->appendHttpEquiv('Cache-Control', 'max-age=0')
|
|
|
52 |
->appendHttpEquiv('Cache-Control', 'no-cache')
|
|
|
53 |
->appendHttpEquiv('charset', 'UTF-8')
|
|
|
54 |
->appendName('viewport', 'width=device-width, initial-scale=1.0');
|
|
|
55 |
//->appendName('description', '')
|
|
|
56 |
//->appendName('author', '{AUTHOR}')
|
|
|
57 |
//->appendName('keywords', '{KEYWORDS}')
|
|
|
58 |
//->appendName('copyright', '{COPYRIGHT}')
|
|
|
59 |
//->appendName('google-signin-client_id', '{GOOGLE_CLIENT_ID');
|
|
|
60 |
?>
|
3435 |
stevensc |
61 |
|
3298 |
efrain |
62 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/animate.css') ?>">
|
|
|
63 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/bootstrap.min.css') ?>">
|
|
|
64 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome.css') ?>">
|
|
|
65 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/line-awesome-font-awesome.min.css') ?>">
|
|
|
66 |
|
|
|
67 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/fontawesome-free/css/all.min.css') ?>">
|
|
|
68 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/font-awesome/css/font-awesome.min.css') ?>">
|
|
|
69 |
<!--
|
|
|
70 |
|
|
|
71 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/font-awesome.min.css') ?>">
|
|
|
72 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/font-awesome/font-awesome.min.css') ?>">
|
|
|
73 |
-->
|
|
|
74 |
|
|
|
75 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick.css') ?>">
|
|
|
76 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('lib/slick/slick-theme.css') ?>">
|
|
|
77 |
|
|
|
78 |
|
|
|
79 |
|
|
|
80 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style.css') ?>" />
|
|
|
81 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive.css') ?>" />
|
|
|
82 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
|
3437 |
stevensc |
83 |
<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('react-bundles/public-navbar/main.css') ?>" />
|
3298 |
efrain |
84 |
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
|
|
|
88 |
<?php
|
|
|
89 |
echo $this->headStyle();
|
3639 |
efrain |
90 |
echo $this->networkStylesAndColorsHelper();
|
3298 |
efrain |
91 |
echo $this->headLink();
|
|
|
92 |
echo $this->headScript();
|
3435 |
stevensc |
93 |
$this->inlineScript()->appendFile('/react-bundles/public-navbar/publicNavBarViewBundle.js');
|
3298 |
efrain |
94 |
?>
|
|
|
95 |
|
|
|
96 |
</head>
|
|
|
97 |
|
|
|
98 |
<body>
|
3436 |
stevensc |
99 |
<div id="public-header">
|
|
|
100 |
</div>
|
4896 |
stevensc |
101 |
|
3438 |
stevensc |
102 |
<?php echo $this->content ?>
|
4896 |
stevensc |
103 |
|
3435 |
stevensc |
104 |
<footer>
|
|
|
105 |
<div class="footy-sec mn">
|
|
|
106 |
<div class="container position-relative">
|
4896 |
stevensc |
107 |
<img class="fl-rgt" src="<?php echo $this->basePath('/images/LL-08.png') ?>" alt="">
|
3435 |
stevensc |
108 |
<?php echo $this->footerHelper() ?>
|
4896 |
stevensc |
109 |
<div class="d-flex align-items-center">
|
|
|
110 |
<img src="<?php echo $this->basePath('images/copy-icon2.png') ?>" alt="">
|
|
|
111 |
<p>CESA MS Copyright <?php echo date('Y') ?></p>
|
|
|
112 |
</div>
|
3431 |
stevensc |
113 |
</div>
|
3435 |
stevensc |
114 |
</div>
|
|
|
115 |
</footer>
|
3298 |
efrain |
116 |
|
4896 |
stevensc |
117 |
<!-- jQuery -->
|
|
|
118 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/jquery/jquery.min.js') ?>"></script>
|
|
|
119 |
<!-- Bootstrap 4 -->
|
|
|
120 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
|
|
|
121 |
<!-- Aplicacion -->
|
|
|
122 |
<script type="text/javascript" src="<?php echo $this->basePath('vendors/bootstrap-notify/bootstrap-notify.min.js') ?>"></script>
|
|
|
123 |
|
|
|
124 |
<script type="text/javascript" src="<?php echo $this->basePath('js/app.js') ?>"></script>
|
|
|
125 |
|
|
|
126 |
<?php echo $this->inlineScript(); ?>
|
3298 |
efrain |
127 |
</body>
|
|
|
128 |
|
|
|
129 |
</html>
|