parent = false; $this->blocks = array( 'content' => array($this, 'block_content'), ); } protected function doDisplay(array $context, array $blocks = array()) { // line 1 echo " GGD Workshop
"; // line 47 $this->loadTemplate("header.html", "layout.html", 47)->display($context); // line 48 echo "
"; // line 51 $this->displayBlock('content', $context, $blocks); // line 53 echo "
"; // line 55 $this->loadTemplate("sidebar.html", "layout.html", 55)->display($context); // line 56 echo "
"; } // line 51 public function block_content($context, array $blocks = array()) { // line 52 echo " "; } public function getTemplateName() { return "layout.html"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 101 => 52, 98 => 51, 83 => 56, 81 => 55, 77 => 53, 75 => 51, 70 => 48, 68 => 47, 20 => 1,); } public function getSourceContext() { return new Twig_Source("", "layout.html", "/home/germanc/dev/composer/ggdworkshop/templates/layout.html"); } }