source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
'title' => [$this, 'block_title'],
'content' => [$this, 'block_content'],
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
echo "
";
// line 7
$this->displayBlock('title', $context, $blocks);
echo "
";
// line 15
$this->displayBlock('content', $context, $blocks);
// line 16
echo "
";
}
// line 7
public function block_title($context, array $blocks = [])
{
}
// line 15
public function block_content($context, array $blocks = [])
{
}
public function getTemplateName()
{
return "@base/Common/base.html";
}
public function getDebugInfo()
{
return array ( 69 => 15, 64 => 7, 58 => 16, 56 => 15, 45 => 7, 37 => 1,);
}
public function getSourceContext()
{
return new Source("
{% block title %}{% endblock %}
{% block content %}{% endblock %}
", "@base/Common/base.html", "D:\\www\\TOP\\application\\home\\view\\Common\\base.html");
}
}