Advertisement
Guest User

Cactus Virtual Layout

a guest
Apr 18th, 2014
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title><?php echo $page_title; ?></title>
  6. <?php echo $page_htmlhead; ?>
  7. <?php ?>
  8.  
  9. <!-- Javascript -->
  10. <script src="<?php echo SITE_URL?>/lib/skins/cactus/js/bootstrap.min.js"></script>
  11. <script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/cactus/js/jquery-1.10.1.min.js"></script>
  12. <script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/cactus/js/jetmenu.js"></script>
  13. <!-- Javascript End -->
  14.  
  15. <!-- jQuery -->
  16.  
  17. <!-- jQuery End -->
  18.  
  19. <!-- Stylesheets -->
  20. <link href="<?php echo SITE_URL?>/lib/skins/cactus/css/style.css" rel="stylesheet" type="text/css">
  21. <link href="<?php echo SITE_URL?>/lib/skins/cactus/css/jetmenu.css" rel="stylesheet" type="text/css">
  22. <link href="<?php echo SITE_URL?>/lib/skins/cactus/styles.css" rel="stylesheet" type="text/css">
  23. <link href="<?php echo SITE_URL?>/lib/skins/cactus/css/bootstrap.min.css" rel="stylesheet" type="text/css">
  24. <!-- Stylesheets End -->
  25.  
  26. </head>
  27.  
  28. <!-- Do not Place Anything Here -->
  29.  
  30. <body>
  31. <?php echo $page_htmlreq; ?>
  32. <section id="topbg">
  33. <div class="banner">
  34. <img src="<?php echo SITE_URL?>/lib/skins/cactus/images/cactusbg.png" ALT="some text" height=130>
  35. </div>
  36. </div>
  37. </section>
  38.  
  39. <!-- Navigation Menu -->
  40. <div class= "navigation">
  41. <?php Template::Show('core_navigation.tpl');?>
  42. </div>
  43. <!-- Navigation Menu End -->
  44.  
  45. <!-- Content -->
  46. <?php echo $page_content;?>
  47. <!-- Content End -->
  48.  
  49. <!-- Footer -->
  50. <center>
  51. <div class="bottom_footer">
  52. <p>&copy; 2014 Fly Cactus Virtual. All Rights Reserved. We are not affiliated with US Airways or their affiliates. Powered by <a href="http://phpvms.net" target="_blank">phpVMS</a>.</p>
  53. </div>
  54. </center>
  55. </body>
  56.  
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement