app/template/default/Block/category_list_child.twig line 1

Open in your IDE?
  1. {#
  2. @param Category $category 商品一覧ページのカテゴリ
  3. SCSS: /html/template/default/assets/scss/bluewood/twig/_category-list.scss
  4. #}
  5. {% block stylesheet %}
  6.     <style>
  7.         .category-list-item__label--withoutimg {
  8.             display: flex;
  9.             align-items: center;
  10.             text-align: justify;
  11.             height: 40px;
  12.         }
  13.         .category-list-item__label--withoutimg p {
  14.             font-size: 12px;
  15.             font-weight: 700;
  16.             line-height: 1.4;
  17.         }
  18.     </style>
  19. {% endblock %}
  20. {% if Category.Children is not empty %}
  21.     <section>
  22.         <div class="heading_with_search_icon heading_with_search_icon--list-page">
  23.             <svg width="24" height="24" viewbox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  24.                 <path d="M10.875 18.75C15.2242 18.75 18.75 15.2242 18.75 10.875C18.75 6.52576 15.2242 3 10.875 3C6.52576 3 3 6.52576 3 10.875C3 15.2242 6.52576 18.75 10.875 18.75Z" stroke="#CF0800" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  25.                 <path d="M16.4424 16.4434L20.9986 20.9997" stroke="#CF0800" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  26.             </svg>
  27.             <h2 class="heading_with_search_icon__text">{{ "カテゴリー絞り込み" }}</h2>
  28.         </div>
  29.         <div class="grid-container">
  30.             {% for c in Category.Children %}
  31.                 <div class="grid-item">
  32.                     <a href="{{ url('product_list') }}?category_id={{c.id}}" class="category-list-item">
  33.                         <div class="category-list-item__label--withoutimg">
  34.                             <p>{{ c.name }}</p>
  35.                         </div>
  36.                     </a>
  37.                 </div>
  38.             {% endfor %}
  39.         </div>
  40.     </section>
  41. {% endif %}