Advertisement
Guest User

Untitled

a guest
Aug 31st, 2011
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.23 KB | None | 0 0
  1. <?php echo $this->doctype; ?>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php echo $this->language; ?>">
  3. <head>
  4. <base href="<?php echo $this->base; ?>" />
  5. <title><?php echo $this->mainTitle; ?> - <?php echo $this->pageTitle; ?></title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->charset; ?>" />
  7. <meta name="description" content="<?php echo $this->description; ?>" />
  8. <meta name="keywords" content="<?php echo $this->keywords; ?>" />
  9. <meta name="Author" content="Nick Østergaard" />
  10. <meta name="robots" content="<?php echo $this->robots; ?>" />
  11. <link rel="stylesheet" href="plugins/slimbox/css/slimbox.css" type="text/css" media="screen" />
  12. <link rel="stylesheet" href="plugins/tablesort/css/tablesort.css" type="text/css" media="screen" />
  13. <link rel="stylesheet" href="plugins/dpsyntax/dpsyntax.css" type="text/css" media="screen" />
  14. <link rel="stylesheet" href="tl_files/CSS/default.css" type="text/css" media="screen" />
  15. <link rel="stylesheet" href="tl_files/CSS/calendar.css" type="text/css" media="screen" />
  16. <!--[if IE]><link rel="stylesheet" href="plugins/dpsyntax/iefixes.css" type="text/css" media="screen" /><![endif]-->
  17. <?php echo $this->stylesheets; ?>
  18. <script type="text/javascript" src="plugins/mootools/mootools.js"></script>
  19. <script type="text/javascript" src="plugins/tablesort/js/tablesort.js"></script>
  20. <script type="text/javascript" src="plugins/slimbox/js/slimbox.js"></script>
  21. <script type="text/javascript" src="plugins/ufo/ufo.js"></script>
  22. <?php echo $this->head; ?>
  23. </head>
  24. <body>
  25. <div id="wrapper">
  26.     <?php echo $this->header; ?>
  27.     <div id="content">
  28.         <div class="main">
  29.         <?php echo $this->main; ?>
  30.         </div>
  31.         <div class="left">
  32.         <?php echo $this->left; ?>
  33.         </div>
  34.     </div>
  35.     <div style="clear: both;"></div>
  36. </div>
  37.  
  38. <!-- indexer::stop -->
  39. <div id="footer">
  40.   <?php echo $this->footer; ?>
  41. </div>
  42. <?php if ($this->urchinId): ?>
  43. <script type="text/javascript" src="<?php echo $this->urchinUrl; ?>"></script>
  44. <script type="text/javascript">
  45.   <!--//--><![CDATA[//><!--
  46.  var pageTracker = _gat._getTracker("<?php echo $this->urchinId; ?>");
  47.  pageTracker._initData();
  48.  pageTracker._trackPageview();
  49.  //--><!]]>
  50. </script>
  51. <?php endif; ?>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement