parent = $this->loadTemplate("layout.html", "committess.html", 1);
$this->blocks = array(
'content' => array($this, 'block_content'),
);
}
protected function doGetParent(array $context)
{
return "layout.html";
}
protected function doDisplay(array $context, array $blocks = array())
{
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_content($context, array $blocks = array())
{
// line 4
echo "
Committees
Scientific Committee
Organizing Committee
- Juan Alonso
- Joaquín Brum
- Andrés Sambarino
- Martín Sambarino
";
}
public function getTemplateName()
{
return "committess.html";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 31 => 4, 28 => 3, 11 => 1,);
}
public function getSourceContext()
{
return new Twig_Source("", "committess.html", "/home/germanc/dev/composer/ggdworkshop/templates/committess.html");
}
}