source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doDisplay(array $context, array $blocks = []) { // line 1 echo " Page
"; // line 11 $this->displayBlock('content', $context, $blocks); // line 12 echo "
"; } // line 11 public function block_content($context, array $blocks = []) { } public function getTemplateName() { return "@base/Common/base.html"; } public function getDebugInfo() { return array ( 56 => 11, 50 => 12, 48 => 11, 36 => 1,); } public function getSourceContext() { return new Source(" Page
{% block content %}{% endblock %}
", "@base/Common/base.html", "D:\\www\\TOP-framework-1.1\\application\\home\\view\\Common\\base.html"); } }