Blame view

src/app/frontend/views/layouts/dealer.php 888 Bytes
1ea3b987   Administrator   maby first commit
1
2
3
4
5
6
7
8
9
10
11
12
  <!DOCTYPE html>
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
      <meta charset="UTF-8">
      <title><?= !empty( $meta_title ) ? $meta_title : \config::get( 'global#title' ) ?></title>
      <!-- Tell the browser to be responsive to screen width -->
      <!-- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">-->
  
      <?= $this->partial('partial/header', ['lang' => $lang]) ?>
  
  </head>
  <body class="skin-blue sidebar-mini fixed">
acd509a2   Administrator   090316
13
  
1ea3b987   Administrator   maby first commit
14
15
16
17
18
19
20
21
22
23
24
25
  <?= $this->partial('partial/popupCart') ?>
  <div class="wrapper">
  
      <?php $this->partial('partial/dealer', ['customer'=> $customer]) ?>
  
      <!-- Content Wrapper. Contains page content -->
      <div class="content-wrapper">
          <?= $this->getContent(); ?>
      </div><!-- /.content-wrapper -->
  
  </div><!-- ./wrapper -->
  
acd509a2   Administrator   090316
26
27
  
  
1ea3b987   Administrator   maby first commit
28
29
30
31
  <?= $this->partial('partial/footer', ['lang' => $lang]) ?>
  
  </body>
  </html>