Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. //Put in the header
  2. <?php
  3. if ($this->countModules('sidebar-right') )
  4. {
  5. $counter = "col-sm-9";
  6. }
  7. else
  8. {
  9. $counter = "col-sm-12";
  10. }
  11. ?>
  12.  
  13. //Markup
  14. <div class="content-wrapper">
  15. <section class="content">
  16. <div class="row">
  17. <div class="<?php echo $counter; ?>">
  18. <jdoc:include type="message" />
  19. <jdoc:include type="component" />
  20. </div>
  21.  
  22. <?php if ($this->countModules('sidebar-right')) : ?>
  23. <div class="col-sm-3">
  24. <jdoc:include type="modules" name="sidebar-right" style="xhtml" />
  25. </div>
  26. <?php endif; ?>
  27.  
  28. </div>
  29. </section>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement