<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;

/* apps_communes.html.twig */
class __TwigTemplate_ccf3968b74686e03bf9498d0a0428415 extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->blocks = [
            'content' => [$this, 'block_content'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 1
        return "frontend/layout.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("frontend/layout.html.twig", 1);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 3
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 4
        yield "<div class=\"container single-template\">
\t<div class=\"page-header\">
\t\t<h1 class=\"page-title\">
\t\t\tLes applications de SIG-ODD
            ";
        // line 8
        if ((($tmp = ($context["commune"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
            yield " | Commune : ";
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, ($context["commune"] ?? null), "name", [], "any", false, false, false, 8), "html", null, true);
            yield " ";
        }
        // line 9
        yield "\t\t</h1>
\t</div>
<section id=\"services\" class=\"services\">
    <div class=\"container\">

        <div class=\"row\">

            <div class=\"col-md-6\" data-aos=\"fade-up\" data-aos-delay=\"100\">
                <div class=\"icon-box p-4\" style=\"background-color: #4bc0c0;\">
                    <div class=\"icon\"><i class=\"las la-file-alt\" style=\"color: #fff;\"></i></div>
                    <a href=\"";
        // line 19
        yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_mesodd_dashboard");
        yield "\"><h4 class=\"title\">MeSODD</h4>
                    <p class=\"description\" style=\"color: #FFFFFF;\"><b>Mesure Sensibilité ODD</b><br>Cette application permet une évaluation ex ante des Plans de Travail Annuel des Ministères aux ODD</p></a>
                </div>
            </div>
            <div class=\"col-md-6\" data-aos=\"fade-up\" data-aos-delay=\"100\">
                <div class=\"icon-box p-4\" style=\"background-color:#ffcd56;\">
                    <div class=\"icon\"><i class=\"las la-tachometer-alt\" style=\"color:#fff;\"></i></div>
                    <a href=\"";
        // line 26
        yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_commune_dashboard");
        yield "\"><h4 class=\"title\">SIODD</h4>
                    <p class=\"description\" style=\"color: #FFFFFF;\"><b>Suivi des Indices ODD</b><br>Cette application calcule les indices de performance des ODD et le Suivi des actions prioritaires du costing des ODD</p></a>
                </div>
            </div>
        </div>

    </div>
</section>
 </div>
";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "apps_communes.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  92 => 26,  82 => 19,  70 => 9,  64 => 8,  58 => 4,  51 => 3,  40 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "apps_communes.html.twig", "/var/www/html/templates/apps_communes.html.twig");
    }
}
