{% extends 'base.html.twig' %}{% block title %} {{ product.name }}{% endblock %}{% block body %} {% include 'product/public/_show.html.twig' %} <script> const imgList = document.querySelectorAll('.img-item') const imgBox = document.querySelector('.box') const gallery = document.querySelector('#gallery') if (!gallery) { imgList.forEach((img) => { img.addEventListener('click', () => { imgBox.src = img.src }) }) } </script>{% endblock %}