<?php

/* tiles.tpl */
class __TwigTemplate_741e79bc5d7142197f78a5ff4c6a5101361ed6400edc1b7c747efecd43f2b91d extends Twig_Template
{
    public function __construct(Twig_Environment $env)
    {
        parent::__construct($env);

        $this->parent = false;

        $this->blocks = array(
        );
    }

    protected function doDisplay(array $context, array $blocks = array())
    {
        // line 1
        echo "<div class=\"tiles\">
  ";
        // line 2
        $context['_parent'] = $context;
        $context['_seq'] = twig_ensure_traversable((isset($context["files"]) ? $context["files"] : null));
        foreach ($context['_seq'] as $context["_key"] => $context["file"]) {
            // line 3
            echo "    <a class=\"tile\" href=\"";
            echo twig_escape_filter($this->env, $this->getAttribute($context["file"], "link", array()), "html", null, true);
            echo "\" title=\"";
            echo twig_escape_filter($this->env, $this->getAttribute($context["file"], "title", array()), "html", null, true);
            echo "\" style=\"background-image: url(";
            echo twig_escape_filter($this->env, $this->getAttribute($context["file"], "image", array()), "html", null, true);
            echo ")\"></a>
  ";
        }
        $_parent = $context['_parent'];
        unset($context['_seq'], $context['_iterated'], $context['_key'], $context['file'], $context['_parent'], $context['loop']);
        $context = array_intersect_key($context, $_parent) + $_parent;
        // line 5
        echo "</div>
";
    }

    public function getTemplateName()
    {
        return "tiles.tpl";
    }

    public function isTraitable()
    {
        return false;
    }

    public function getDebugInfo()
    {
        return array (  39 => 5,  26 => 3,  22 => 2,  19 => 1,);
    }
}
/* <div class="tiles">*/
/*   {% for file in files %}*/
/*     <a class="tile" href="{{ file.link }}" title="{{ file.title }}" style="background-image: url({{ file.image }})"></a>*/
/*   {% endfor %}*/
/* </div>*/
/* */
