var/cache/dev/twig/11/111716d29bb5ed303b58f68eac7caeb0.php line 39

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* content/home.html.twig */
  14. class __TwigTemplate_1b35becaaf07f266afd65c0312a070eb extends Template
  15. {
  16.     private $source;
  17.     private $macros = [];
  18.     public function __construct(Environment $env)
  19.     {
  20.         parent::__construct($env);
  21.         $this->source $this->getSourceContext();
  22.         $this->blocks = [
  23.         ];
  24.         $this->sandbox $this->env->getExtension('\Twig\Extension\SandboxExtension');
  25.         $this->checkSecurity();
  26.     }
  27.     protected function doGetParent(array $context)
  28.     {
  29.         // line 1
  30.         return "layouts/layout.html.twig";
  31.     }
  32.     protected function doDisplay(array $context, array $blocks = [])
  33.     {
  34.         $macros $this->macros;
  35.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  36.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""content/home.html.twig"));
  37.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  38.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""content/home.html.twig"));
  39.         $this->parent $this->loadTemplate("layouts/layout.html.twig""content/home.html.twig"1);
  40.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  41.         
  42.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  43.         
  44.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  45.     }
  46.     public function getTemplateName()
  47.     {
  48.         return "content/home.html.twig";
  49.     }
  50.     public function isTraitable()
  51.     {
  52.         return false;
  53.     }
  54.     public function getDebugInfo()
  55.     {
  56.         return array (  36 => 1,);
  57.     }
  58.     public function getSourceContext()
  59.     {
  60.         return new Source("{% extends 'layouts/layout.html.twig' %}""content/home.html.twig""/var/www/html/templates/content/home.html.twig");
  61.     }
  62.     
  63.     public function checkSecurity()
  64.     {
  65.         static $tags = array();
  66.         static $filters = array();
  67.         static $functions = array();
  68.         try {
  69.             $this->sandbox->checkSecurity(
  70.                 [],
  71.                 [],
  72.                 []
  73.             );
  74.         } catch (SecurityError $e) {
  75.             $e->setSourceContext($this->source);
  76.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  77.                 $e->setTemplateLine($tags[$e->getTagName()]);
  78.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  79.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  80.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  81.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  82.             }
  83.             throw $e;
  84.         }
  85.     }
  86. }