Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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