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

Open in your IDE?
  1. {% set schedule_items = [
  2.     {
  3.     time: '12:00',
  4.     text: '出勤',
  5.     },
  6.     {
  7.     time: '12:10',
  8.     text: '店舗の清掃スタート',
  9.     },
  10.     {
  11.     time: '12:40',
  12.     text: 'お料理仕込みスタート -焼鳥の串打ちを行います-',
  13.     },
  14.     {
  15.     time: '15:00',
  16.     text: '休憩 -みんなで賄いを頂きます-',
  17.     },
  18.     {
  19.     time: '16:00',
  20.     text: '開店前の最終チェック',
  21.     },
  22.     {
  23.     time: '16:30',
  24.     text: '営業開始 -接客を担当します-',
  25.     },
  26.     {
  27.     time: '21:00',
  28.     text: '発注、明日の準備確認',
  29.     },
  30.     {
  31.     time: '22:00',
  32.     text: '閉店',
  33.     },
  34.     {
  35.     time: '22:15',
  36.     text: '退勤',
  37.     },
  38. ] %}
  39. <section class="pg_staff_detail_schedule">
  40.     <div class="pg_staff_detail_schedule_container">
  41.         <div class="pg_staff_detail_schedule__img">
  42.             <img src="{{ asset('build/images/staff/detail_02/sp_detail02.jpg') }}" alt="" class="sp-style">
  43.             <img src="{{ asset('build/images/staff/detail_02/detail02.jpg') }}" alt="" class="pc-style">
  44.         </div>
  45.         <div class="pg_staff_detail_schedule_text-area">
  46.             <h3 class="pg-staff_schedule_title-wrap">
  47.                 <span class="pg-staff_schedule_title_icon">
  48.                     <img src="{{ asset('build/images/common/icon-time.svg') }}" alt="">
  49.                 </span>
  50.                 <span class="pg-staff_schedule_title"><span class="pg-staff_schedule_pc-title">1DAY</span>SCHEDULE</span>
  51.             </h3>
  52.             {% include "components/staff/_schedule_item.html.twig" %}
  53.         </div>
  54.     </div>
  55.     <div class="pg_staff_detail_schedule_button">
  56.         {% include "components/common/_button.html.twig" with {
  57.             text: '一覧へ戻る',
  58.             src: 'build/images/common/double_arrow_white.svg',
  59.             href: path('staff_index'),
  60.             width: '12',
  61.             height: '10',
  62.             class: 'c-white-border-rev_button',
  63.             }%}
  64.     </div>
  65. </section>