templates/Components/category-item.html.twig line 1

Open in your IDE?
  1. <!-- This template require [index, name, href, image, fallbackImage] -->
  2. <div class="col-xl-3  col-lg-3 col-md-4 col-sm-6 mb-5 mb-lg-5 mb-md-5 d-flex flex-column justify-content-center align-items-center text-center">
  3.     <a href="{{page['href']}}" class="d-flex flex-column align-items-center">
  4.         <div class="productCircle" style="background-image: url({{ image ? image.getThumbnail('Stoelting_neuroscience_circle') }}), url({{ image ? '' : fallbackImage }});"></div>
  5.         <h5 class="font-weight-bold text-uppercase text-navyBlue mt-4 mt-lg-4 mt-md-4">{{ page['name'] }}</h5>
  6.     </a>
  7. </div>