Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. <div class="block block-layered-nav masonry-brick" style="position: absolute; top: 120px; left: 0px;">
  2.  
  3. <head>
  4. <?php echo $this->getChildHtml('head') ?>
  5. </head>
  6. <body class="<?php echo $this->getBodyClass()?' '.$this->getBodyClass().'':'' ?><?php echo Mage::getStoreConfig('oursettings/design/responsive') ? '': ' non-responsive ' ?>">
  7.  
  8. <!-- Prompt IE 6 users to install Chrome Frame. Remove this if you support IE 6.
  9. chromium.org/developers/how-tos/chrome-frame-getting-started -->
  10. <!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
  11.  
  12. <?php echo $this->getChildHtml('after_body_start') ?>
  13. <div class="wrapper">
  14. <?php echo $this->getChildHtml('global_notices') ?>
  15. <div class="page">
  16. <?php echo $this->getChildHtml('header') ?>
  17. <div class="main-container col2-left-layout">
  18. <div class="main row">
  19. <?php echo $this->getChildHtml('breadcrumbs') ?>
  20. <div class="col-main">
  21. <?php echo $this->getChildHtml('global_messages') ?>
  22. <?php echo $this->getChildHtml('content') ?>
  23. </div>
  24. <div class="col-left sidebar">
  25. <?php
  26. echo $left = $this->getChildHtml('left');
  27. $mdms_blocks = Mage::registry('mdms_blocks');
  28. $config = Mage::getStoreConfig('ourssettings/blocks');
  29. $existing_blocks = array_keys($mdms_blocks);
  30. $blocks = $sort = array();
  31. if ( !empty($mdms_blocks)) {
  32. foreach ($mdms_blocks as $block_name => $block_content) {
  33. if ( $config[$block_name] ) {
  34. $blocks[] = $block_content;
  35. $sort[] = $config[$block_name.'_order'];
  36. }
  37. }
  38. array_multisort($sort, $blocks);
  39. echo implode("rn", $blocks);
  40. }
  41. ?>
  42. </div>
  43. </div>
  44. <?php echo $this->getChildHtml('footer') ?>
  45. </div>
  46. <?php echo $this->getChildHtml('before_body_end') ?>
  47. </div>
  48. </div>
  49. <?php echo $this->getAbsoluteFooter() ?>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement