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

Open in your IDE?
  1. {% set link_items = [
  2.   {
  3.   href: path('company_index'),
  4.   target: '',
  5.   text: '会社概要',
  6.   },
  7.   {
  8.   href: path('message_index'),
  9.   target: '',
  10.   text: 'メッセージ',
  11.   },
  12.   {
  13.   href: path('staff_index'),
  14.   target: '',
  15.   text: 'スタッフ紹介',
  16.   },
  17.   {
  18.   href: path('news_index'),
  19.   target: '',
  20.   text: 'お知らせ',
  21.   },
  22.   {
  23.   href: path('contact_index'),
  24.   target: '',
  25.   text: 'お問い合わせ',
  26.   },
  27.   {
  28.   href: path('recruit_index'),
  29.   target: '',
  30.   text: '求人情報',
  31.   },
  32. ]%}
  33. <footer class="l-footer">
  34.   <div class="l-footer_inner">
  35.     {# sp-footer #}
  36.     <div class="sp-style">
  37.       <div class="l-footer_logo">
  38.         <img src="{{ asset('build/images/common/logo.png') }}" alt="ふじきっちん">
  39.       </div>
  40.       <p class="l-footer_text">
  41.         平塚富士キッチンは、お客様スタッフ、<br>
  42.         お店に関わる全ての人々が<br>
  43.         幸せになることを目指しています。
  44.       </p>
  45.     </div>
  46.     {# pc-footer #}
  47.     <div class="pc-style">
  48.       <div class="l-footer_logo">
  49.         <img src="{{ asset('build/images/common/logo.png') }}" alt="ふじきっちん">
  50.       </div>
  51.       <ul class="l-footer_link-wrap">
  52.         {% for item in link_items %}
  53.         <li class="l-footer_link-item">
  54.           <a class="l-footer_link-item_anchor" href="{{ item.href }}" target="{{ item.target }}">{{ item.text }}</a>
  55.         </li>
  56.         {% endfor %}
  57.       </ul>
  58.     </div>
  59.     <div class="l-footer_corporate-button">
  60.       {% include "components/common/_button.html.twig" with {
  61.       text: 'コーポレートサイト',
  62.       src: 'build/images/common/icon-link.svg',
  63.       href: 'https://www.fujikitchen.com/',
  64.       width: '16',
  65.       height: '14',
  66.       class: 'c-white-border_button',
  67.       }%}
  68.     </div>
  69.   </div>
  70.   <div class="l-footer_copy-right">
  71.     <p class="l-footer_copy-right_text">
  72.       copyright HIRATSUKA FUJI<br class="sp-style">
  73.       kitchen recruit. All right reserved
  74.     </p>
  75.   </div>
  76. </footer>