templates/pages/index/_company.html.twig line 1

Open in your IDE?
  1. {% set image_items = [
  2.     {
  3.     url: 'https://www.fujikitchen.com/brand/yakiniku_kai',
  4.     target: '_blank',
  5.     image: asset('build/images/index/brand01.png'),
  6.     alt: '炭火焼肉 快',
  7.     },
  8.     {
  9.     url: 'https://www.fujikitchen.com/brand/yakitori_kai',
  10.     target: '_blank',
  11.     image: asset('build/images/index/brand02.png'),
  12.     alt: 'やきとりの快',
  13.     },
  14.     {
  15.     url: 'https://www.fujikitchen.com/brand/kaisen_fujimaru',
  16.     target: '_blank',
  17.     image: asset('build/images/index/brand03.png'),
  18.     alt: '海鮮問屋 ふじ丸',
  19.     },
  20.     {
  21.     url: 'https://www.fujikitchen.com/brand/edo_fujimaru',
  22.     target: '_blank',
  23.     image: asset('build/images/index/brand04.png'),
  24.     alt: '回転江戸前寿司 海鮮問屋 ふじ丸',
  25.     },
  26.     {
  27.     url: 'https://www.fujikitchen.com/brand/fujikitchen',
  28.     target: '_blank',
  29.     image: asset('build/images/index/brand05.png'),
  30.     alt: '仕出し・お弁当 ふじきっちん',
  31.     },
  32.     {
  33.     url: 'https://www.fujikitchen.com/brand/farm',
  34.     target: '_blank',
  35.     image: asset('build/images/index/brand06.png'),
  36.     alt: 'ロココファーム',
  37.     },
  38.     {
  39.     url: 'https://www.fujikitchen.com/brand/curry',
  40.     target: '_blank',
  41.     image: asset('build/images/index/brand07.png'),
  42.     alt: 'ふじきっちんカレー',
  43.     },
  44.     {
  45.     url: 'https://www.fujikitchen.com/brand/fujimaru_suisan',
  46.     target: '_blank',
  47.     image: asset('build/images/index/brand08.png'),
  48.     alt: 'ふじ丸水産',
  49.     },
  50. ] %}
  51. <section class="pg_index_company">
  52.     <div class="pg_index_company-container">
  53.         <div class="pg_index_company-inner">
  54.             <div class="pg_index_company_title-container">
  55.                 <h2 class="pg_index_company_title-wrap">
  56.                     <div class="sp-style">
  57.                         <span class="pg_index_company_title">平塚富士キッチン</span>
  58.                         <span class="pg_index_company_title">を知る</span>
  59.                         <span class="pg_index_company_sub-title">-COMPANY-</span>
  60.                     </div>
  61.                     <div class="pc-style">
  62.                         <span class="pg_index_company_title">平塚富士キッチンを知る</span>
  63.                         <span class="pg_index_company_sub-title">-COMPANY-</span>
  64.                     </div>
  65.                 </h2>
  66.                 <p class="pg_index_company__text">私たちは、あらゆるジャンルの食で<br class="sp-style">お客様の笑顔を創造いたします。</p>
  67.             </div>
  68.             <ul class="pg_index_company-banner-container">
  69.                 {% for item in image_items %}
  70.                     <li class="pg_index_company-banner-item">
  71.                         <a href="{{ item.url }}" target="{{ item.target }}"><img src="{{ item.image }}" alt="{{ item.alt }}"></a>
  72.                     </li>
  73.                 {% endfor %}
  74.             </ul>
  75.             <div class="pg_index_company_more-button">
  76.                 {% include "components/common/_button.html.twig" with {
  77.                     text: 'VIEW MORE',
  78.                     src: 'build/images/common/double_arrow_white.svg',
  79.                     href: path('company_index'),
  80.                     width: '12',
  81.                     height: '10',
  82.                     class: 'c-black-more_button',
  83.                 }%}
  84.             </div>
  85.         </div>
  86.     </div>
  87. </section>