parent = array(); $this->blocks = array( 'title' => array($this, 'block_title'), 'content' => array($this, 'block_content'), ); } protected function doDisplay(array $context, array $blocks = array()) { $context = array_merge($this->env->getGlobals(), $context); // line 1 echo " env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/css/configure.css"), "html"); echo "\" type=\"text/css\" media=\"all\" /> "; // line 6 $this->displayBlock('title', $context, $blocks); echo " env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/images/favicon.ico"), "html"); echo "\" />
env, $this->env->getExtension('assets')->getAssetUrl("bundles/sensiodistribution/webconfigurator/images/logo-small.gif"), "html"); echo "\" alt=\"Symfony\" />
"; // line 15 $this->displayBlock('content', $context, $blocks); // line 16 echo "
Symfony Standard Edition v."; // line 17 echo twig_escape_filter($this->env, $this->getContext($context, 'version'), "html"); echo "
"; } // line 6 public function block_title($context, array $blocks = array()) { echo "Web Configurator Bundle"; } // line 15 public function block_content($context, array $blocks = array()) { } public function getTemplateName() { return "SensioDistributionBundle::Configurator/layout.html.twig"; } public function isTraitable() { return false; } }