parent = false;
$this->blocks = array(
);
}
protected function doDisplay(array $context, array $blocks = array())
{
// line 1
echo "
Tweets - Template 2
";
// line 2
if ((twig_length_filter($this->env, (isset($context["tweets"]) ? $context["tweets"] : null)) > 0)) {
// line 3
echo "\t
\t\t";
// line 4
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable((isset($context["tweets"]) ? $context["tweets"] : null));
foreach ($context['_seq'] as $context["_key"] => $context["tweet"]) {
// line 5
echo "\t\t\t- ";
echo twig_escape_filter($this->env, $this->getAttribute($context["tweet"], "text", array()), "html", null, true);
echo "
\t\t";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['tweet'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 7
echo "\t
";
}
}
public function getTemplateName()
{
return "template2";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 40 => 7, 31 => 5, 27 => 4, 24 => 3, 22 => 2, 19 => 1,);
}
}
/* Tweets - Template 2
*/
/* {% if tweets|length > 0 %}*/
/* */
/* {% for tweet in tweets %}*/
/* - {{ tweet.text }}
*/
/* {% endfor %}*/
/*
*/
/* {% endif %}*/