124 lines
3.7 KiB
PHP
124 lines
3.7 KiB
PHP
<?php
|
|
|
|
/* layout.html */
|
|
class __TwigTemplate_060c2b5d81bbb578de76d155af652584832d51a095966ac0180d6c43f9c4554d extends Twig_Template
|
|
{
|
|
public function __construct(Twig_Environment $env)
|
|
{
|
|
parent::__construct($env);
|
|
|
|
$this->parent = false;
|
|
|
|
$this->blocks = array(
|
|
'content' => array($this, 'block_content'),
|
|
);
|
|
}
|
|
|
|
protected function doDisplay(array $context, array $blocks = array())
|
|
{
|
|
// line 1
|
|
echo "<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<title>GGD Workshop</title>
|
|
<meta name=\"description\" content=\"Workshop on Groups Geometry and Dynamics\" />
|
|
<meta name=\"keywords\" content=\"Workshop ICM Groups Geometry Dynamics\" />
|
|
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />
|
|
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
|
|
<link rel=\"icon\" type=\"image/x-icon\" href=\"favicon.ico\" />
|
|
<link rel=\"alternate\" href=\"http://ggd.cmat.edu.uy\" hreflang=\"es-uy\" />
|
|
|
|
<!-- Jquery -->
|
|
<script type=\"text/javascript\" src=\"lib/jquery/jquery-3.2.1.min.js\"></script>
|
|
|
|
<!-- Jquery UI -->
|
|
<link rel=\"stylesheet\" href=\"lib/jquery/jquery-ui.css\">
|
|
<script type=\"text/javascript\" src=\"lib/fullcalendar/lib/jquery-ui.min.js\"></script>
|
|
|
|
<!-- Moment.js -->
|
|
<script type=\"text/javascript\" src=\"lib/fullcalendar/lib/moment.min.js\"></script>
|
|
|
|
<!-- Jquery validate -->
|
|
<script src=\"lib/jquery/jquery-validation/dist/jquery.validate.min.js\"></script>
|
|
<script src=\"lib/jquery/jquery-validation/dist/additional-methods.min.js\"></script>
|
|
|
|
<!-- Bootstrap 3.3.7 -->
|
|
<link rel=\"stylesheet\" href=\"lib/bootstrap/dist/css/bootstrap.min.css\">
|
|
<script src=\"lib/bootstrap/dist/js/bootstrap.min.js\"></script>
|
|
|
|
<!-- Select2 -->
|
|
<link href=\"lib/select2/dist/css/select2.min.css\" rel=\"stylesheet\" />
|
|
<script src=\"lib/select2/dist/js/select2.full.js\"></script>
|
|
|
|
|
|
<!-- google captcha -->
|
|
<script src=\"https://www.google.com/recaptcha/api.js?hl=es\" async defer></script>
|
|
|
|
<!-- My App -->
|
|
<link rel=\"stylesheet\" type=\"text/css\" href=\"style/style.css\" />
|
|
<script type=\"text/javascript\" src=\"js/app.js\"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id=\"main\">
|
|
";
|
|
// line 47
|
|
$this->loadTemplate("header.html", "layout.html", 47)->display($context);
|
|
// line 48
|
|
echo " <div id=\"site_content\" class=\"container\">
|
|
<div class=\"row\">
|
|
<div id=\"content\" class=\"col-xs-12 col-sm-8\">
|
|
";
|
|
// line 51
|
|
$this->displayBlock('content', $context, $blocks);
|
|
// line 53
|
|
echo " </div>
|
|
<div id=\"sidebar\" class=\"sidebar col-xs-12 col-sm-4\">
|
|
";
|
|
// line 55
|
|
$this->loadTemplate("sidebar.html", "layout.html", 55)->display($context);
|
|
// line 56
|
|
echo " </div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer id=\"footer\">
|
|
<p>Creado por: <a href=\"wwww.cmat.edu.uy\">El Centro de Matemática</a></p>
|
|
<p style=\"text-transform:none;\">Germán Correa - germanc@cmat.edu.uy</a></p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
|
|
</html>";
|
|
}
|
|
|
|
// line 51
|
|
public function block_content($context, array $blocks = array())
|
|
{
|
|
// line 52
|
|
echo " ";
|
|
}
|
|
|
|
public function getTemplateName()
|
|
{
|
|
return "layout.html";
|
|
}
|
|
|
|
public function isTraitable()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function getDebugInfo()
|
|
{
|
|
return array ( 101 => 52, 98 => 51, 83 => 56, 81 => 55, 77 => 53, 75 => 51, 70 => 48, 68 => 47, 20 => 1,);
|
|
}
|
|
|
|
public function getSourceContext()
|
|
{
|
|
return new Twig_Source("", "layout.html", "/home/germanc/dev/composer/ggdworkshop/templates/layout.html");
|
|
}
|
|
}
|