var/cache/dev/twig/37/379d6ceaf9c6d977c3c743e4b7217efb.php line 55

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* index.twig */
  14. class __TwigTemplate_871a210c77b1ac2044f1e00e10bd85f3 extends \Eccube\Twig\Template
  15. {
  16.     private $source;
  17.     private $macros = [];
  18.     public function __construct(Environment $env)
  19.     {
  20.         parent::__construct($env);
  21.         $this->source $this->getSourceContext();
  22.         $this->blocks = [
  23.             'stylesheet' => [$this'block_stylesheet'],
  24.             'javascript' => [$this'block_javascript'],
  25.             'main' => [$this'block_main'],
  26.         ];
  27.         $this->sandbox $this->env->getExtension('\Twig\Extension\SandboxExtension');
  28.         $this->checkSecurity();
  29.     }
  30.     protected function doGetParent(array $context)
  31.     {
  32.         // line 11
  33.         return "default_frame.twig";
  34.     }
  35.     protected function doDisplay(array $context, array $blocks = [])
  36.     {
  37.         $macros $this->macros;
  38.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  39.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""index.twig"));
  40.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  41.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""index.twig"));
  42.         // line 13
  43.         $context["body_class"] = "front_page";
  44.         // line 11
  45.         $this->parent $this->loadTemplate("default_frame.twig""index.twig"11);
  46.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  47.         
  48.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  49.         
  50.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  51.     }
  52.     // line 15
  53.     public function block_stylesheet($context, array $blocks = [])
  54.     {
  55.         $macros $this->macros;
  56.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  57.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""stylesheet"));
  58.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  59.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""stylesheet"));
  60.         // line 16
  61.         echo "  <style>
  62.     .slick-dots {
  63.       position: absolute;
  64.       bottom: -30px;
  65.       display: block;
  66.       width: 100%;
  67.       padding: 0;
  68.       list-style: none;
  69.       text-align: center;
  70.     }
  71.     .slick-dots li {
  72.       position: relative;
  73.       display: inline-block;
  74.       width: 20px;
  75.       height: 20px;
  76.       margin: 0;
  77.       padding: 0;
  78.       cursor: pointer;
  79.     }
  80.     .slick-dots li button {
  81.       font-size: 0;
  82.       line-height: 0;
  83.       display: block;
  84.       width: 20px;
  85.       height: 20px;
  86.       padding: 5px;
  87.       cursor: pointer;
  88.       color: transparent;
  89.       border: 0;
  90.       outline: none;
  91.       background: transparent;
  92.     }
  93.     .slick-dots li button:hover,
  94.     .slick-dots li button:focus {
  95.       outline: none;
  96.     }
  97.     .slick-dots li button:hover:before,
  98.     .slick-dots li button:focus:before {
  99.       opacity: 1;
  100.     }
  101.     .slick-dots li button:before {
  102.       content: \" \";
  103.       line-height: 20px;
  104.       position: absolute;
  105.       top: 0;
  106.       left: 0;
  107.       width: 10px;
  108.       height: 10px;
  109.       text-align: center;
  110.       opacity: .25;
  111.       background-color: #999999;
  112.       border-radius: 50%;
  113.     }
  114.     .slick-dots li.slick-active button:before {
  115.       opacity: .75;
  116.       background-color: #999999;
  117.     }
  118.     .slick-dots li button.thumbnail img {
  119.       width: 0;
  120.       height: 0;
  121.     }
  122.   </style>
  123. ";
  124.         
  125.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  126.         
  127.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  128.     }
  129.     // line 89
  130.     public function block_javascript($context, array $blocks = [])
  131.     {
  132.         $macros $this->macros;
  133.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  134.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""javascript"));
  135.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  136.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""javascript"));
  137.         // line 90
  138.         echo "  <script>
  139.     \$('.masaito-slide').slick({
  140.         dots: true, 
  141.         infinite: true, 
  142.         speed: 1500, 
  143.         slidesToShow: 1, 
  144.         slidesToScroll: 1,
  145.         autoplay: true,
  146.         autoplaySpeed: 3000,
  147.         pauseOnHover: false,
  148.         prevArrow: '<button type=\"button\" class=\"slick-prev tes\"><img src=\"";
  149.         // line 100
  150.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/icon/prev.png"), "html"nulltrue);
  151.         echo "\" alt=\"pre\"></button>',
  152.         nextArrow: '<button type=\"button\" class=\"slick-next tess\"><img src=\"";
  153.         // line 101
  154.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/icon/next.png"), "html"nulltrue);
  155.         echo "\" alt=\"next\"></button>'
  156.     });
  157.   </script>
  158. ";
  159.         
  160.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  161.         
  162.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  163.     }
  164.     // line 106
  165.     public function block_main($context, array $blocks = [])
  166.     {
  167.         $macros $this->macros;
  168.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  169.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""main"));
  170.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  171.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""main"));
  172.         // line 107
  173.         echo "  <div class=\"ec-sliderRole\">
  174.     <div class=\"main_visual\">
  175.       <div class=\"item slick-slide\">
  176.         <a href=\"";
  177.         // line 110
  178.         echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("homepage");
  179.         echo "page/special/bib2026-tokyo-crazy-party/\">
  180.           <img src=\"/user_data/main_banner/top/pc_BIBlive2026_1024_400_2.jpg\" alt=\"BIB 2026 Tokyo Crazy Party\" class=\"slide-img-pc\">
  181.           <img src=\"/user_data/main_banner/top/pc_BIBlive2026_1024_400_2.jpg\" alt=\"BIB 2026 Tokyo Crazy Party\" class=\"slide-img-sp\">
  182.         </a>
  183.       </div>
  184.       <div class=\"item slick-slide\">
  185.         <a href=\"";
  186.         // line 116
  187.         echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("homepage");
  188.         echo "page/special/marilyn-manson-oaud2/\">
  189.           <img src=\"/user_data/main_banner/top/pc_Mason_1024_400_2.jpg\" alt=\"Marilyn Manson\" class=\"slide-img-pc\">
  190.           <img src=\"/user_data/main_banner/top/pc_Mason_1024_400_2.jpg\" alt=\"Marilyn Manson\" class=\"slide-img-sp\">
  191.         </a>
  192.       </div>
  193.       <div class=\"item slick-slide\">
  194.       <a href=\"";
  195.         // line 122
  196.         echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("product_list");
  197.         echo "?group_id=7828\">
  198.         <img src=\"/user_data/main_banner/rock/pc_Asia2026_1024_400_2.jpg\" alt=\"Asia 2026\" class=\"slide-img-pc\">
  199.         <img src=\"/user_data/main_banner/rock/pc_Asia2026_1024_400_2.jpg\" alt=\"Asia 2026\" class=\"slide-img-sp\">
  200.       </a>
  201.     </div>
  202.     </div>
  203.   </div>
  204. ";
  205.         
  206.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  207.         
  208.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  209.     }
  210.     public function getTemplateName()
  211.     {
  212.         return "index.twig";
  213.     }
  214.     public function isTraitable()
  215.     {
  216.         return false;
  217.     }
  218.     public function getDebugInfo()
  219.     {
  220.         return array (  229 => 122,  220 => 116,  211 => 110,  206 => 107,  196 => 106,  182 => 101,  178 => 100,  166 => 90,  156 => 89,  75 => 16,  65 => 15,  54 => 11,  52 => 13,  39 => 11,);
  221.     }
  222.     public function getSourceContext()
  223.     {
  224.         return new Source("{#
  225. This file is part of EC-CUBE
  226. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  227. http://www.ec-cube.co.jp/
  228. For the full copyright and license information, please view the LICENSE
  229. file that was distributed with this source code.
  230. #}
  231. {% extends 'default_frame.twig' %}
  232. {% set body_class = 'front_page' %}
  233. {% block stylesheet %}
  234.   <style>
  235.     .slick-dots {
  236.       position: absolute;
  237.       bottom: -30px;
  238.       display: block;
  239.       width: 100%;
  240.       padding: 0;
  241.       list-style: none;
  242.       text-align: center;
  243.     }
  244.     .slick-dots li {
  245.       position: relative;
  246.       display: inline-block;
  247.       width: 20px;
  248.       height: 20px;
  249.       margin: 0;
  250.       padding: 0;
  251.       cursor: pointer;
  252.     }
  253.     .slick-dots li button {
  254.       font-size: 0;
  255.       line-height: 0;
  256.       display: block;
  257.       width: 20px;
  258.       height: 20px;
  259.       padding: 5px;
  260.       cursor: pointer;
  261.       color: transparent;
  262.       border: 0;
  263.       outline: none;
  264.       background: transparent;
  265.     }
  266.     .slick-dots li button:hover,
  267.     .slick-dots li button:focus {
  268.       outline: none;
  269.     }
  270.     .slick-dots li button:hover:before,
  271.     .slick-dots li button:focus:before {
  272.       opacity: 1;
  273.     }
  274.     .slick-dots li button:before {
  275.       content: \" \";
  276.       line-height: 20px;
  277.       position: absolute;
  278.       top: 0;
  279.       left: 0;
  280.       width: 10px;
  281.       height: 10px;
  282.       text-align: center;
  283.       opacity: .25;
  284.       background-color: #999999;
  285.       border-radius: 50%;
  286.     }
  287.     .slick-dots li.slick-active button:before {
  288.       opacity: .75;
  289.       background-color: #999999;
  290.     }
  291.     .slick-dots li button.thumbnail img {
  292.       width: 0;
  293.       height: 0;
  294.     }
  295.   </style>
  296. {% endblock %}
  297. {% block javascript %}
  298.   <script>
  299.     \$('.masaito-slide').slick({
  300.         dots: true, 
  301.         infinite: true, 
  302.         speed: 1500, 
  303.         slidesToShow: 1, 
  304.         slidesToScroll: 1,
  305.         autoplay: true,
  306.         autoplaySpeed: 3000,
  307.         pauseOnHover: false,
  308.         prevArrow: '<button type=\"button\" class=\"slick-prev tes\"><img src=\"{{ asset('assets/icon/prev.png') }}\" alt=\"pre\"></button>',
  309.         nextArrow: '<button type=\"button\" class=\"slick-next tess\"><img src=\"{{ asset('assets/icon/next.png') }}\" alt=\"next\"></button>'
  310.     });
  311.   </script>
  312. {% endblock javascript %}
  313. {% block main %}
  314.   <div class=\"ec-sliderRole\">
  315.     <div class=\"main_visual\">
  316.       <div class=\"item slick-slide\">
  317.         <a href=\"{{ url('homepage') }}page/special/bib2026-tokyo-crazy-party/\">
  318.           <img src=\"/user_data/main_banner/top/pc_BIBlive2026_1024_400_2.jpg\" alt=\"BIB 2026 Tokyo Crazy Party\" class=\"slide-img-pc\">
  319.           <img src=\"/user_data/main_banner/top/pc_BIBlive2026_1024_400_2.jpg\" alt=\"BIB 2026 Tokyo Crazy Party\" class=\"slide-img-sp\">
  320.         </a>
  321.       </div>
  322.       <div class=\"item slick-slide\">
  323.         <a href=\"{{ url('homepage') }}page/special/marilyn-manson-oaud2/\">
  324.           <img src=\"/user_data/main_banner/top/pc_Mason_1024_400_2.jpg\" alt=\"Marilyn Manson\" class=\"slide-img-pc\">
  325.           <img src=\"/user_data/main_banner/top/pc_Mason_1024_400_2.jpg\" alt=\"Marilyn Manson\" class=\"slide-img-sp\">
  326.         </a>
  327.       </div>
  328.       <div class=\"item slick-slide\">
  329.       <a href=\"{{ url('product_list') }}?group_id=7828\">
  330.         <img src=\"/user_data/main_banner/rock/pc_Asia2026_1024_400_2.jpg\" alt=\"Asia 2026\" class=\"slide-img-pc\">
  331.         <img src=\"/user_data/main_banner/rock/pc_Asia2026_1024_400_2.jpg\" alt=\"Asia 2026\" class=\"slide-img-sp\">
  332.       </a>
  333.     </div>
  334.     </div>
  335.   </div>
  336. {% endblock %}""index.twig""/home/ubuntu/wardrecords/app/template/default/index.twig");
  337.     }
  338.     
  339.     public function checkSecurity()
  340.     {
  341.         static $tags = array("set" => 13);
  342.         static $filters = array("escape" => 100);
  343.         static $functions = array("asset" => 100"url" => 110);
  344.         try {
  345.             $this->sandbox->checkSecurity(
  346.                 ['set'],
  347.                 ['escape'],
  348.                 ['asset''url'],
  349.                 $this->source
  350.             );
  351.         } catch (SecurityError $e) {
  352.             $e->setSourceContext($this->source);
  353.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  354.                 $e->setTemplateLine($tags[$e->getTagName()]);
  355.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  356.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  357.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  358.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  359.             }
  360.             throw $e;
  361.         }
  362.     }
  363. }