Guest User

Untitled

a guest
Aug 19th, 2012
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. .......
  2. protected function doDisplay(array $context, array $blocks = array())
  3. {
  4. // line 1
  5. $this->env->loadTemplate("header.twig")->display($context);
  6. // line 2
  7. echo "<div class=\"container-fluid\">
  8. <div class=\"row-fluid\">
  9. <div class=\"span2\">
  10. Sidebar
  11. </div>
  12. <div class=\"span10\">
  13. ";
  14. // line 8
  15. if (isset($context["content"])) { $_content_ = $context["content"]; } else { $_content_ = null; }
  16. echo $_content_;
  17. echo "
  18. </div>
  19. </div>
  20. </div>
  21. ";
  22. // line 12
  23. $this->env->loadTemplate("footer.twig")->display($context);
  24. }
  25. ......
Advertisement
Add Comment
Please, Sign In to add comment