templates/pages/staff/detail_05/_hero.html.twig line 1

Open in your IDE?
  1. {% set block_title_items = [
  2.   {
  3.   sp_text01: '知りたいを極める。',
  4.   pc_text01: '知りたいを極める。',
  5.   name: '店長 伊丹 悟郎',
  6.   },
  7. ] %}
  8. {% set hero_items = [
  9.   {
  10.   sp_img: asset('build/images/staff/detail_05/sp_hero.jpg'),
  11.   pc_img: asset('build/images/staff/detail_05/hero.jpg'),
  12.   staff_name: '店長 伊丹 悟郎',
  13.   },
  14. ] %}
  15. <section class="pg_staff_detail_hero">
  16.   {% for item in hero_items %}
  17.     <div class="pg_staff_detail_hero_img">
  18.       <img src="{{ item.sp_img }}" alt="" class="sp-style">
  19.       <img src="{{ item.pc_img }}" alt="" class="pc-style">
  20.       {#<div class="pg_staff_detail_hero_title">
  21.         {% include "components/common/_block-title.html.twig" %}
  22.       </div>#}
  23.     </div>
  24.     <p class="pg_staff_detail_hero__name">{{ item.staff_name }}</p>
  25.   {% endfor %}
  26. </section>