parent = false;
$this->blocks = array(
'content' => array($this, 'block_content'),
);
}
protected function doDisplay(array $context, array $blocks = array())
{
// line 1
echo "
";
// line 2
$this->displayBlock('content', $context, $blocks);
// line 3
echo "
";
}
// line 2
public function block_content($context, array $blocks = array())
{
}
public function getTemplateName()
{
return "base.twig";
}
public function getDebugInfo()
{
return array ( 30 => 2, 25 => 3, 23 => 2, 20 => 1, 181 => 82, 176 => 81, 168 => 77, 159 => 72, 154 => 71, 149 => 70, 140 => 65, 129 => 58, 118 => 51, 110 => 47, 94 => 35, 84 => 29, 78 => 27, 70 => 23, 64 => 21, 52 => 13, 39 => 10, 31 => 4, 28 => 3,);
}
}