a74c3b216b8300618d334e0f45674763135fa389cb1778aa4991344ad6427278.php
2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?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;
/* default/template/common/column_right.twig */
class __TwigTemplate_332e181c7599efe3eb9016853ca69ee7e4e4203659124c84f7afc0efd1b7b0de extends \Twig\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
if (($context["modules"] ?? null)) {
// line 2
echo "<aside id=\"column-right\" class=\"col-sm-3 hidden-xs\">
";
// line 3
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["modules"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["module"]) {
// line 4
echo " ";
echo $context["module"];
echo "
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['module'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 6
echo "</aside>
";
}
}
public function getTemplateName()
{
return "default/template/common/column_right.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 55 => 6, 46 => 4, 42 => 3, 39 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "default/template/common/column_right.twig", "");
}
}