Advertisement
Guest User

Untitled

a guest
Aug 4th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="<?php echo $template->registry('language'); ?>" class="<?php $template->helper('class'); ?>">
  3.  
  4.     <!-- head -->
  5.  
  6.     <head>
  7.  
  8.         <!-- template head -->
  9.  
  10.         <?php $template->partial('head.phtml'); ?>
  11.        
  12.         <?php $template->script()->append('scripts/alias.js'); ?>
  13.         <?php $template->script()->prepend('template/default/scripts/alias.js'); ?>
  14.  
  15.         <!-- admin head -->
  16.  
  17.         <?php $template->partial('templates/admin/head.phtml'); ?>
  18.     </head>
  19.  
  20.     <!-- body -->
  21.  
  22.     <body class="wrapper_body">
  23.  
  24.         <!-- admin panel -->
  25.  
  26.         <?php $template->partial('templates/admin/panel.phtml'); ?>
  27.  
  28.         <!-- header -->
  29.  
  30.         <?php $template->partial('header.phtml'); ?>
  31.  
  32.         <!-- main -->
  33.  
  34.         <div class="wrapper clear_fix">
  35.  
  36.             <!-- handle error -->
  37.  
  38.             <?php if ($template->status('error')): ?>
  39.                 <?php $template->partial('error.phtml'); ?>
  40.  
  41.             <!-- else content and sidebar -->
  42.  
  43.             <?php else: ?>
  44.                 <?php $template->partial('navibar.phtml'); ?>
  45.                 <?php $template->partial('content.phtml'); ?>
  46.                 <?php $template->partial('sidebar.phtml'); ?>
  47.             <?php endif; ?>
  48.         </div>
  49.  
  50.         <!-- footer -->
  51.  
  52.         <?php $template->partial('footer.phtml'); ?>
  53.         <?php echo $template->script(); ?>
  54.     </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement