| 12345 |
anikendra |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="utf-8">
|
|
|
5 |
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
7 |
<title><?php echo $title_for_layout; ?></title>
|
|
|
8 |
|
|
|
9 |
<!--[if lt IE 9]>
|
|
|
10 |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
|
|
|
11 |
<![endif]-->
|
|
|
12 |
|
|
|
13 |
<?php
|
|
|
14 |
//Load Bootstrap:
|
|
|
15 |
echo $this->Bootstrap->load();
|
|
|
16 |
echo $this->fetch('meta');
|
|
|
17 |
echo $this->fetch('css');
|
|
|
18 |
echo $this->fetch('script');
|
|
|
19 |
?>
|
|
|
20 |
|
|
|
21 |
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
|
22 |
<!--[if lt IE 9]>
|
|
|
23 |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
|
24 |
<![endif]-->
|
|
|
25 |
<link href="<?php echo $base_url;?>css/style.css" rel="stylesheet"/>
|
| 12354 |
anikendra |
26 |
<script type='text/javascript' src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
|
27 |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
|
|
28 |
<!-- <script type="text/javascript" src="<?php echo $base_url;?>js/jquery-1.7.2.min.js"></script> -->
|
| 12345 |
anikendra |
29 |
<link rel="shortcut icon" href="<?php echo $base_url;?>favicon.ico" type="image/x-icon">
|
|
|
30 |
<link rel="icon" href="<?php echo $base_url;?>favicon.ico" type="image/x-icon">
|
|
|
31 |
</head>
|
|
|
32 |
<body>
|
|
|
33 |
<div id="wrap">
|
|
|
34 |
<div class="navbar navbar-fixed-top navbar-inverse">
|
|
|
35 |
<?php echo $this->element('header');?>
|
|
|
36 |
</div>
|
|
|
37 |
<div class="container-fluid">
|
|
|
38 |
<div class="row-fluid">
|
|
|
39 |
<div id="main-content" class="span12">
|
|
|
40 |
<?php echo $this->Session->flash(); ?>
|
|
|
41 |
<?php echo $this->fetch('content'); ?>
|
|
|
42 |
</div><!--/span-->
|
|
|
43 |
</div><!--/row-->
|
|
|
44 |
</div> <!-- /container -->
|
|
|
45 |
<div id="push"></div>
|
|
|
46 |
</div>
|
|
|
47 |
<div id="footer">
|
|
|
48 |
<div class="container">
|
|
|
49 |
<?php echo $this->element('footer');?>
|
|
|
50 |
<?php echo $this->element('sql_dump'); ?>
|
|
|
51 |
</div>
|
|
|
52 |
</div>
|
|
|
53 |
</body>
|
|
|
54 |
</html>
|