parent = array(); $this->blocks = array( 'title' => array($this, 'block_title'), 'content_header_more' => array($this, 'block_content_header_more'), 'content_header' => array($this, 'block_content_header'), '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/acmedemo/css/demo.css"), "html"); echo "\" type=\"text/css\" media=\"all\" /> "; // line 6 $this->displayBlock('title', $context, $blocks); echo " env, $this->env->getExtension('assets')->getAssetUrl("favicon.ico"), "html"); echo "\" />
env, $this->env->getExtension('routing')->getPath("_welcome"), "html"); echo "\"> env, $this->env->getExtension('assets')->getAssetUrl("bundles/acmedemo/images/logo.gif"), "html"); echo "\" alt=\"Symfony\">
"; // line 22 if ($this->getAttribute($this->getAttribute($this->getContext($context, 'app'), "session", array(), "any", false), "flash", array("notice", ), "method", false)) { // line 23 echo "
Notice: "; // line 24 echo twig_escape_filter($this->env, $this->getAttribute($this->getAttribute($this->getContext($context, 'app'), "session", array(), "any", false), "flash", array("notice", ), "method", false), "html"); echo "
"; } // line 27 echo " "; // line 28 $this->displayBlock('content_header', $context, $blocks); // line 37 echo "
"; // line 39 $this->displayBlock('content', $context, $blocks); // line 41 echo "
"; // line 43 if (array_key_exists("code", $context)) { // line 44 echo "

Code behind this page

"; // line 45 echo $this->getContext($context, 'code'); echo "
"; } // line 47 echo "
"; } // line 6 public function block_title($context, array $blocks = array()) { echo "Demo Bundle"; } // line 30 public function block_content_header_more($context, array $blocks = array()) { // line 31 echo "
  • env, $this->env->getExtension('routing')->getPath("_demo"), "html"); echo "\">Demo Home
  • "; } // line 28 public function block_content_header($context, array $blocks = array()) { // line 29 echo "
    "; } // line 39 public function block_content($context, array $blocks = array()) { // line 40 echo " "; } public function getTemplateName() { return "AcmeDemoBundle::layout.html.twig"; } public function isTraitable() { return false; } }