You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
1 year ago
|
<?php
|
||
|
|
||
|
use Twig\Environment;
|
||
|
use Twig\Error\LoaderError;
|
||
|
use Twig\Error\RuntimeError;
|
||
|
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;
|
||
|
|
||
|
/* accueil.html */
|
||
|
class __TwigTemplate_3d5cf680e70c0069d652ab3d71cf7eef extends Template
|
||
|
{
|
||
|
private $source;
|
||
|
private $macros = [];
|
||
|
|
||
|
public function __construct(Environment $env)
|
||
|
{
|
||
|
parent::__construct($env);
|
||
|
|
||
|
$this->source = $this->getSourceContext();
|
||
|
|
||
|
$this->parent = false;
|
||
|
|
||
|
$this->blocks = [
|
||
|
];
|
||
|
}
|
||
|
|
||
|
protected function doDisplay(array $context, array $blocks = [])
|
||
|
{
|
||
|
$macros = $this->macros;
|
||
|
// line 1
|
||
|
echo "<!DOCTYPE html>
|
||
|
<html lang=\"fr\">
|
||
|
<head>
|
||
|
<meta charset=\"UTF-8\" />
|
||
|
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />
|
||
|
<title>Alica - Accueil</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
";
|
||
|
}
|
||
|
|
||
|
public function getTemplateName()
|
||
|
{
|
||
|
return "accueil.html";
|
||
|
}
|
||
|
|
||
|
public function getDebugInfo()
|
||
|
{
|
||
|
return array ( 37 => 1,);
|
||
|
}
|
||
|
|
||
|
public function getSourceContext()
|
||
|
{
|
||
|
return new Source("", "accueil.html", "/Applications/MAMP/htdocs/SAE_2A_FA-Reseau_ALICA/php/vues/accueil.html");
|
||
|
}
|
||
|
}
|