| 12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <?php
- foreach($css_files as $file): ?>
- <link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
- <?php endforeach; ?>
- <?php foreach($js_files as $file): ?>
- <script src="<?php echo $file; ?>"></script>
- <?php endforeach; ?>
- </head>
- <body>
- <div>
- <a href='<?php echo site_url('/admin/deptos')?>'>Datos Departamento</a> |
- <a href='<?php echo site_url('/admin/distribuidoras')?>'>Distribuidoras</a> |
- <a href='<?php echo site_url('/admin/datospanel')?>'>Datos Panel</a> |
- </div>
- <div style='height:20px;'></div>
- <div>
- <?php echo $output; ?>
- </div>
- </body>
- </html>
|