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

Open in your IDE?
  1. {% set block_title_items = [
  2.   {
  3.   sp_text01: '「やっぱりふじ丸最高」の',
  4.   sp_text02: 'ビジョンに向かって。',
  5.   pc_text01: '「やっぱりふじ丸最高」の',
  6.   pc_text02: 'ビジョンに向かって。',
  7.   name: 'ホール主任 森 玲奈',
  8.   },
  9. ] %}
  10. {% set hero_items = [
  11.   {
  12.   sp_img: asset('build/images/staff/detail_04/sp_hero.jpg'),
  13.   pc_img: asset('build/images/staff/detail_04/hero.jpg'),
  14.   staff_name: 'ホール主任 森 玲奈',
  15.   },
  16. ] %}
  17. <section class="pg_staff_detail_hero">
  18.   {% for item in hero_items %}
  19.     <div class="pg_staff_detail_hero_img">
  20.       <img src="{{ item.sp_img }}" alt="" class="sp-style">
  21.       <img src="{{ item.pc_img }}" alt="" class="pc-style">
  22.       {#<div class="pg_staff_detail_hero_title">
  23.         {% include "components/common/_block-title.html.twig" %}
  24.       </div>#}
  25.     </div>
  26.     <p class="pg_staff_detail_hero__name">{{ item.staff_name }}</p>
  27.   {% endfor %}
  28. </section>