templates/layout/footer/_footer.html.twig line 1

Open in your IDE?
  1. <footer class="l-footer">
  2.   <div class="l-footer_inner">
  3.     <div class="l-footer_button-area">
  4.       {#{% include "components/common/_button.html.twig" with {
  5.       text: '予約する',
  6.       src: 'build/images/common/icon-reserve.svg',
  7.       href: path('top'),
  8.       width: '16',
  9.       height: '18',
  10.       class: 'c-red-button',
  11.       }%}#}
  12.       {% include "components/common/_button.html.twig" with {
  13.       text: 'お問合わせ',
  14.       src: 'build/images/common/icon-mail.svg',
  15.       href: path('contact_index'),
  16.       width: '18',
  17.       height: '18',
  18.       class: 'c-red-button',
  19.       }%}
  20.       {% include "components/common/_button.html.twig" with {
  21.       text: '採用サイト',
  22.       src: 'build/images/common/icon-link.svg',
  23.       href: ('https://recruit.fujikitchen.com/'),
  24.       width: '14',
  25.       height: '14',
  26.       class: 'c-black-button2',
  27.       }%}
  28.     </div>
  29.       {% set link_items = [
  30.       {
  31.       text:'TOP',
  32.       href:path('top'),
  33.         },
  34.         {
  35.       text:'会社概要',
  36.       href:path('company_index'),
  37.         },
  38.         {
  39.       text:'お知らせ',
  40.       href:path('news_index'),
  41.         },
  42.       ] %}
  43.       <div class="l-footer-inside_link">
  44.         <ul class="l-footer-inside_link_wrap">
  45.           {% for item in link_items %}
  46.           <li class="l-footer-inside_link-item">
  47.             <a class="l-footer-inside_link-item_anchor" href="{{ item.href }}">{{ item.text }}</a>
  48.           </li>
  49.           {% endfor %}
  50.         </ul>
  51.       </div>
  52.       {% set brand_items = [
  53.       {
  54.       text:'海鮮問屋 ふじ丸',
  55.       href:path('kaisen_fujimaru_index'),
  56.       },
  57.       {
  58.       text:'仕出し・お弁当 ふじきっちん',
  59.       href:path('fujikitchen_index'),
  60.       },
  61.       {
  62.       text:'回転江戸前寿司 海鮮問屋 ふじ丸',
  63.       href:path('edo_fujimaru_index'),
  64.       },
  65.       {
  66.       text:'ロココファーム',
  67.       href:path('farm_index'),
  68.       },
  69.       {
  70.       text:'炭火焼肉 快',
  71.       href:path('yakiniku_kai_index'),
  72.       },
  73.       {
  74.       text:'やきとりの快',
  75.       href:path('yakitori_kai_index'),
  76.       },
  77.       {
  78.       text:'ふじきっちんカレー',
  79.       href:path('curry_index'),
  80.       },
  81.       {
  82.       text:'ふじ丸水産',
  83.       href:path('fujimaru_suisan_index'),
  84.       },
  85.       ] %}
  86.       <div class="l-footer-relation_link">
  87.         <div class="l-footer-relation_link-title">
  88.           ブランド一覧
  89.         </div>
  90.         <ul class="l-footer-relation_link_wrap">
  91.           {% for item in brand_items %}
  92.           <li class="l-footer-relation_link-item">
  93.             <a class="l-footer-relation_link-item_anchor" href="{{ item.href }}">{{ item.text }}</a>
  94.           </li>
  95.           {% endfor %}
  96.         </ul>
  97.       </div>
  98.   </div>
  99.   <div class="l-footer-copyright">
  100.       <div class="l-footer-copyright_logo">
  101.           <img src="{{ asset('build/images/common/logo.png') }}" alt="ふじきっちん">
  102.       </div>
  103.     <p class="l-footer-copyright-text">
  104.       copyright HIRATSUKA FUJI kitchen recruit. All right reserved
  105.     </p>
  106.   </div>
  107. </footer>