c1081adfc27bc98d3ea0a6377d4bce2494664374094cfe242e60f041b9b7a54e.php
4.09 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?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/extension/module/slideshow.twig */
class __TwigTemplate_ab35027df8212c18ad8ffbb836db91a6e82a5061909d9c80c93b2f5753189da7 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
echo "<div class=\"slideshow swiper-viewport\">
<div id=\"slideshow";
// line 2
echo ($context["module"] ?? null);
echo "\" class=\"swiper-container\">
<div class=\"swiper-wrapper\"> ";
// line 3
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["banners"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["banner"]) {
// line 4
echo " <div class=\"swiper-slide text-center\">";
if (twig_get_attribute($this->env, $this->source, $context["banner"], "link", [], "any", false, false, false, 4)) {
echo "<a href=\"";
echo twig_get_attribute($this->env, $this->source, $context["banner"], "link", [], "any", false, false, false, 4);
echo "\"><img src=\"";
echo twig_get_attribute($this->env, $this->source, $context["banner"], "image", [], "any", false, false, false, 4);
echo "\" alt=\"";
echo twig_get_attribute($this->env, $this->source, $context["banner"], "title", [], "any", false, false, false, 4);
echo "\" class=\"img-responsive\" /></a>";
} else {
echo "<img src=\"";
echo twig_get_attribute($this->env, $this->source, $context["banner"], "image", [], "any", false, false, false, 4);
echo "\" alt=\"";
echo twig_get_attribute($this->env, $this->source, $context["banner"], "title", [], "any", false, false, false, 4);
echo "\" class=\"img-responsive\" />";
}
echo "</div>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['banner'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 5
echo " </div>
</div>
<div class=\"swiper-pagination slideshow";
// line 7
echo ($context["module"] ?? null);
echo "\"></div>
<div class=\"swiper-pager\">
<div class=\"swiper-button-next\"></div>
<div class=\"swiper-button-prev\"></div>
</div>
</div>
<script type=\"text/javascript\"><!--
\$('#slideshow";
// line 14
echo ($context["module"] ?? null);
echo "').swiper({
\tmode: 'horizontal',
\tslidesPerView: 1,
\tpagination: '.slideshow";
// line 17
echo ($context["module"] ?? null);
echo "',
\tpaginationClickable: true,
\tnextButton: '.slideshow .swiper-button-next',
prevButton: '.slideshow .swiper-button-prev',
spaceBetween: 30,
\tautoplay: 2500,
autoplayDisableOnInteraction: true,
\tloop: true
});
//--></script>";
}
public function getTemplateName()
{
return "default/template/extension/module/slideshow.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 91 => 17, 85 => 14, 75 => 7, 71 => 5, 48 => 4, 44 => 3, 40 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "default/template/extension/module/slideshow.twig", "");
}
}