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

Open in your IDE?
  1. {% set schedule_items = [
  2.     {
  3.     time: '10:00',
  4.     text: '出勤',
  5.     },
  6.     {
  7.     time: '10:00',
  8.     text: 'ランチ仕込みスタート',
  9.     },
  10.     {
  11.     time: '11:30',
  12.     text: 'ランチ営業開始',
  13.     },
  14.     {
  15.     time: '14:30',
  16.     text: 'ランチ営業終了 -休憩&賄いタイム-',
  17.     },
  18.     {
  19.     time: '16:30',
  20.     text: 'ディナー営業準備',
  21.     },
  22.     {
  23.     time: '17:00',
  24.     text: 'ディナー営業開始',
  25.     },
  26.     {
  27.     time: '22:00',
  28.     text: '閉店',
  29.     },
  30.     {
  31.     time: '22:15',
  32.     text: '退勤',
  33.     },
  34. ] %}
  35. <section class="pg_staff_detail_schedule">
  36.     <div class="pg_staff_detail_schedule_container">
  37.         <div class="pg_staff_detail_schedule__img">
  38.             <img src="{{ asset('build/images/staff/detail_03/sp_detail02.jpg') }}" alt="" class="sp-style">
  39.             <img src="{{ asset('build/images/staff/detail_03/detail02.jpg') }}" alt="" class="pc-style">
  40.         </div>
  41.         <div class="pg_staff_detail_schedule_text-area">
  42.             <h3 class="pg-staff_schedule_title-wrap">
  43.                 <span class="pg-staff_schedule_title_icon">
  44.                     <img src="{{ asset('build/images/common/icon-time.svg') }}" alt="">
  45.                 </span>
  46.                 <span class="pg-staff_schedule_title"><span class="pg-staff_schedule_pc-title">1DAY</span>SCHEDULE</span>
  47.             </h3>
  48.             {% include "components/staff/_schedule_item.html.twig" %}
  49.         </div>
  50.     </div>
  51.     <div class="pg_staff_detail_schedule_button">
  52.         {% include "components/common/_button.html.twig" with {
  53.             text: '一覧へ戻る',
  54.             src: 'build/images/common/double_arrow_white.svg',
  55.             href: path('staff_index'),
  56.             width: '12',
  57.             height: '10',
  58.             class: 'c-white-border-rev_button',
  59.             }%}
  60.     </div>
  61. </section>