mirror of
https://github.com/brmlab/brmsklad.git
synced 2025-08-02 14:23:34 +02:00
37 lines
1 KiB
PHP
37 lines
1 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<?php echo $this->Html->charset(); ?>
|
|
<title>
|
|
BrmSklad:
|
|
<?php echo $title_for_layout; ?>
|
|
</title>
|
|
<?php
|
|
echo $this->Html->meta('icon');
|
|
echo $this->Html->css('cake.generic');
|
|
echo $this->Html->script(array('jquery.min','jquery.dataTables.min'));
|
|
echo $this->fetch('meta');
|
|
echo $this->fetch('css');
|
|
echo $this->fetch('script');
|
|
?>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('#datatables').dataTable({iDisplayLength:50});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<h1><?php echo $this->Html->image("brmlab.png",array("height" => "30px")); ?><?php echo $this->Html->link(' BrmSklad', "/"); ?></h1>
|
|
</div>
|
|
<div id="content">
|
|
|
|
<?php echo $this->Session->flash(); ?>
|
|
|
|
<?php echo $this->fetch('content'); ?>
|
|
</div>
|
|
</div>
|
|
<?php echo $this->element('sql_dump'); ?>
|
|
</body>
|
|
</html>
|