Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16805 | Rev 16807 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16805 Rev 16806
Línea 59... Línea 59...
59
	<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
59
	<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
60
	<!-- Font Awesome -->
60
	<!-- Font Awesome -->
61
	<link rel="stylesheet" href="<?php echo $this->basePath('plugins/font-awesome/css/font-awesome.css') ?>">
61
	<link rel="stylesheet" href="<?php echo $this->basePath('plugins/font-awesome/css/font-awesome.css') ?>">
62
	<!-- Theme style -->
62
	<!-- Theme style -->
63
	<link rel="stylesheet" href="<?php echo $this->basePath('css/adminlte.min.css') ?>">
63
	<link rel="stylesheet" href="<?php echo $this->basePath('css/adminlte.min.css') ?>">
64
	<!-- App style -->
-
 
65
	<link rel="stylesheet" href="<?php echo $this->basePath('/react-bundles/menu/main.css') ?>">
-
 
66
	<script src="<?php echo $this->basePath('plugins/ckeditor/ckeditor.js') ?>"></script>
-
 
-
 
64
 
Línea 67... Línea 65...
67
 
65
 
68
	<?php if ($currentUserHelper->hasIdentity()) :  ?>
66
	<?php if ($currentUserHelper->hasIdentity()) :  ?>
69
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
67
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/icons.css') ?>" />
70
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
68
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/smiley/assets/sprites/emojione.sprites.css') ?>" />
71
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
69
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery-ui.css') ?>" />
Línea 72... Línea 70...
72
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery.ui.plupload.css') ?>" />
70
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('vendors/uploader/jquery.ui.plupload/css/jquery.ui.plupload.css') ?>" />
-
 
71
 
73
 
72
 
74
 
73
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/chat.css') ?>" />
-
 
74
		<!-- 
-
 
75
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css') ?>" />
75
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/chat.css') ?>" />
76
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
-
 
77
		
Línea 76... Línea 78...
76
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/style-cesa.css') ?>" />
78
		
77
		<link rel="stylesheet" type="text/css" href="<?php echo $this->basePath('css/responsive-cesa.css') ?>" />
79
		<link rel="stylesheet" href="<?php echo $this->basePath('css/main.css') ?>">
78
		<link rel="stylesheet" href="<?php echo $this->basePath('css/main.css') ?>">
80
		 -->
79
 
81
 
Línea 85... Línea 87...
85
	echo $this->headScript();
87
	echo $this->headScript();
86
	?>
88
	?>
Línea 87... Línea 89...
87
 
89
 
Línea 88... Línea 90...
88
</head>
90
</head>
89
 
91
 
90
<body class="hold-transition sidebar-mini">
92
<body class="hold-transition layout-top-nav">
Línea -... Línea 93...
-
 
93
	<!-- Site wrapper -->
91
	<!-- Site wrapper -->
94
	<div class="wrapper">
92
	<div class="wrapper">
95
 
93
 
96
 
-
 
97
    	<nav class="main-header navbar navbar-expand-md navbar-light navbar-white">
-
 
98
        	<div class="container">
-
 
99
         		 <a href="<?php echo $this->url('dashboard') ?>" class="navbar-brand">
-
 
100
         		 	<?php if($company) : ?>
94
		<nav class="main-header navbar navbar-expand navbar-white navbar-light">
101
            		<img src="<?php echo $this->url('storage', ['type' => 'company', 'code' => $company->uuid, 'filename' => $company->image] )?>" alt="LABEL_ADMINISTRATION" class="brand-image img-circle elevation-3" style="opacity: .8">
-
 
102
          			<?php else: ?>
-
 
103
    				<img src="img/ll-logo.png" alt="LABEL_ADMINISTRATION" class="brand-image img-circle elevation-3" style="opacity: .8">
-
 
104
          			<?php endif; ?>
95
			<div class="w-100 text-center">
105
       
96
				<h4><?php  echo $company ? $company->name : 'LABEL_SUPER_ADMIN' ?></h4>
106
    				<span class="brand-text font-weight-light">&nbsp;</span>
97
			</div>
107
    			
98
		</nav>
108
    			</a>
99
 
109
    
100
		<div id="menu-sidebar">
110
          		<div class="collapse navbar-collapse order-3" id="navbarCollapse">
-
 
111
    
101
			<?php
112
    		        <ul class="navbar-nav">
102
			if ($currentUserHelper->hasIdentity()) {
113
       					<?php echo $this->menuHelper() ?>
103
				echo $this->menuHelper();
114
              		</ul>
-
 
115
    			</div>
Línea 104... Línea 116...
104
			}
116
    		</div>	
105
			?>
117
    	</nav>
106
		</div>
118
 
107
 
119