parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
$context["macros"] = $this->loadTemplate("macros/macros.html.twig", "partials/navigation.html.twig", 1)->unwrap();
// line 2
echo "
";
// line 4
echo $context["macros"]->getnav_loop(($context["pages"] ?? null));
echo "
";
}
public function getTemplateName()
{
return "partials/navigation.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 39 => 4, 35 => 3, 32 => 2, 30 => 1,);
}
/** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
public function getSource()
{
@trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
return $this->getSourceContext()->getCode();
}
public function getSourceContext()
{
return new Source("{% import 'macros/macros.html.twig' as macros %}
{{ macros.nav_loop(pages) }}
", "partials/navigation.html.twig", "/mnt/wpool1_tempdisk/webwndt/steintiger/user/themes/quark/templates/partials/navigation.html.twig");
}
}