templates/layout/header/_main-menu.html.twig line 1

Open in your IDE?
  1. {% set menu_items = [
  2.       {
  3.       text:'お知らせ',
  4.       href:path('news_index'),
  5.         },
  6.         {
  7.       text:'会社概要',
  8.       href:path('company_index'),
  9.         },
  10.         {
  11.       text:'ブランド一覧',
  12.       href:path('brand_index'),
  13.         },
  14.         ] %}
  15. <ul class="l_header_main-menu">
  16.     {% for item in menu_items %}
  17.     <li class="l_header_main-menu_item">
  18.         <a class="l_header_main-menu_item_anchor" href="{{ item.href }}">{{ item.text }}</a>
  19.     </li>
  20.     {% endfor %}
  21.     <li class="l_header_main-menu_item">
  22.         <a class="l_header_main-menu_item_anchor" href="{{ ('https://recruit.fujikitchen.com/') }}">
  23.             <span class="l_header_main-menu_item_anchor_text">採用サイト</span>
  24.             <span class="l_header_main-menu_item_anchor_icon">
  25.                 <img src="{{ asset('build/images/common/icon-link.svg') }}" alt="リンクアイコン">
  26.             </span>
  27.         </a>
  28.     </li>
  29.     <li class="l_header_main-menu_item">
  30.     {#{% include "components/common/_button.html.twig" with {
  31.       text: '予約する',
  32.       src: 'build/images/common/icon-reserve.svg',
  33.       href: path('top'),
  34.       width: '16',
  35.       height: '18',
  36.       class: 'c-red-button',
  37.       }%}#}
  38.     </li>
  39.     <li class="l_header_main-menu_item">
  40.     {% include "components/common/_button.html.twig" with {
  41.       text: 'お問合わせ',
  42.       src: 'build/images/common/icon-mail.svg',
  43.       href: path('contact_index'),
  44.       width: '18',
  45.       height: '18',
  46.       class: 'c-red-button',
  47.       }%}
  48.     </li>
  49. </ul>