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

Open in your IDE?
  1. {% set schedule_items = [
  2.     {
  3.     time: '05:00',
  4.     text: '小田原市場到着<br>-本日の厳選の魚を隈なくチェックしたあとで仲卸業者さんに発注-',
  5.     },
  6.     {
  7.     time: '06:30',
  8.     text: '小田原漁港からお店へ',
  9.     },
  10.     {
  11.     time: '07:30',
  12.     text: '出勤',
  13.     },
  14.     {
  15.     time: '07:40',
  16.     text: '仕込みスタート',
  17.     },
  18.     {
  19.     time: '11:30',
  20.     text: 'ランチ営業スタート',
  21.     },
  22.     {
  23.     time: '15:00',
  24.     text: 'ランチ営業終了 -休憩&賄い-',
  25.     },
  26.     {
  27.     time: '16:45',
  28.     text: '翌日の仕込み、発注準備の計画を確認して退勤',
  29.     },
  30. ] %}
  31. <section class="pg_staff_detail_schedule">
  32.     <div class="pg_staff_detail_schedule_container">
  33.         <div class="pg_staff_detail_schedule__img">
  34.             <img src="{{ asset('build/images/staff/detail_05/sp_detail02.jpg') }}" alt="" class="sp-style">
  35.             <img src="{{ asset('build/images/staff/detail_05/detail02.jpg') }}" alt="" class="pc-style">
  36.         </div>
  37.         <div class="pg_staff_detail_schedule_text-area">
  38.             <h3 class="pg-staff_schedule_title-wrap">
  39.                 <span class="pg-staff_schedule_title_icon">
  40.                     <img src="{{ asset('build/images/common/icon-time.svg') }}" alt="">
  41.                 </span>
  42.                 <span class="pg-staff_schedule_title"><span class="pg-staff_schedule_pc-title">1DAY</span>SCHEDULE</span>
  43.             </h3>
  44.             {% include "components/staff/_schedule_item.html.twig" %}
  45.         </div>
  46.     </div>
  47.     <div class="pg_staff_detail_schedule_button">
  48.         {% include "components/common/_button.html.twig" with {
  49.             text: '一覧へ戻る',
  50.             src: 'build/images/common/double_arrow_white.svg',
  51.             href: path('staff_index'),
  52.             width: '12',
  53.             height: '10',
  54.             class: 'c-white-border-rev_button',
  55.             }%}
  56.     </div>
  57. </section>