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

Open in your IDE?
  1. {% set block_title_items = [
  2.   {
  3.   sp_text01: '今日の「ありがとう」が',
  4.   sp_text02: '明日の「ありがとう」に',
  5.   sp_text03: '繋がる。',
  6.   pc_text01: '今日の「ありがとう」が',
  7.   pc_text02: '明日の「ありがとう」に繋がる。',
  8.   pc_text03: '',
  9.   name: 'ホール主任 臼井 雪奈',
  10.   },
  11. ] %}
  12. {% set hero_items = [
  13.   {
  14.   sp_img: asset('build/images/staff/detail_02/sp_hero.jpg'),
  15.   pc_img: asset('build/images/staff/detail_02/hero.jpg'),
  16.   staff_name: 'ホール主任 臼井 雪奈',
  17.   },
  18. ] %}
  19. <section class="pg_staff_detail_hero">
  20.   {% for item in hero_items %}
  21.     <div class="pg_staff_detail_hero_img">
  22.       <img src="{{ item.sp_img }}" alt="" class="sp-style">
  23.       <img src="{{ item.pc_img }}" alt="" class="pc-style">
  24.       {#<div class="pg_staff_detail_hero_title">
  25.         {% include "components/common/_block-title.html.twig" %}
  26.       </div>#}
  27.     </div>
  28.     <p class="pg_staff_detail_hero__name">{{ item.staff_name }}</p>
  29.   {% endfor %}
  30. </section>