{% set block_title_items = [
{
sp_text01: '知りたいを極める。',
pc_text01: '知りたいを極める。',
name: '店長 伊丹 悟郎',
},
] %}
{% set hero_items = [
{
sp_img: asset('build/images/staff/detail_05/sp_hero.jpg'),
pc_img: asset('build/images/staff/detail_05/hero.jpg'),
staff_name: '店長 伊丹 悟郎',
},
] %}
<section class="pg_staff_detail_hero">
{% for item in hero_items %}
<div class="pg_staff_detail_hero_img">
<img src="{{ item.sp_img }}" alt="" class="sp-style">
<img src="{{ item.pc_img }}" alt="" class="pc-style">
{#<div class="pg_staff_detail_hero_title">
{% include "components/common/_block-title.html.twig" %}
</div>#}
</div>
<p class="pg_staff_detail_hero__name">{{ item.staff_name }}</p>
{% endfor %}
</section>