app/template/flapshop/Block/category_nav_sp.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% set Categories = repository('Eccube\\Entity\\Category').getList() %}
  9. {% macro tree(Category) %}
  10.     {% from _self import tree %}
  11.     <a href="{{ url('product_list') }}?category_id={{ Category.id }}">
  12.         {{ Category.name }}
  13.     </a>
  14.     {% if Category.children|length > 0 %}
  15.         <ul>
  16.             {% for ChildCategory in Category.children %}
  17.                 <li>
  18.                     {{ tree(ChildCategory) }}
  19.                 </li>
  20.             {% endfor %}
  21.         </ul>
  22.     {% endif %}
  23. {% endmacro %}
  24. {# @see https://github.com/bolt/bolt/pull/2388 #}
  25. {% from _self import tree %}
  26. <div class="ec-headerCategoryArea">
  27.     <div class="ec-headerCategoryArea__heading">
  28.         <p>{{ 'カテゴリ一覧'|trans }}</p>
  29.     </div>
  30.     <div class="ec-itemNav">
  31.         <ul class="ec-itemNav__nav">
  32.             {% for Category in Categories %}
  33.                 <li>
  34.                     {{ tree(Category) }}
  35.                 </li>
  36.             {% endfor %}
  37.         </ul>
  38.     </div>
  39.     <div class="globalnavi_sp">
  40. {# ナビ #}
  41.     <a href="https://flap-shop.com/mypage" class="navtitlelink">
  42.     <div class="pcnavtitlebox">
  43.     <span class="navicon"></span>
  44.     <p class="pcnavtitle">
  45.     <span class="nav_en">My page</span> 
  46.     <span class="nav_jp">マイページ</span>
  47.     </p>
  48.     </div>
  49.     </a>
  50. {# ナビ #}
  51. {# ナビ #}
  52.     <a href="https://flap-shop.com/news" class="navtitlelink">
  53.     <div class="pcnavtitlebox">
  54.     <span class="navicon"></span>
  55.     <p class="pcnavtitle">
  56.     <span class="nav_en">Flap News</span> 
  57.     <span class="nav_jp">今月のフラップニュース</span>
  58.     </p>
  59.     </div>
  60.     </a>
  61. {# ナビ #}
  62. {# ナビ #}
  63.     {#<a href="http://flap1994.com/contact/" class="navtitlelink" target="_blank">#}
  64.     {#<div class="pcnavtitlebox">#}
  65.     {#<span class="navicon"></span>#}
  66.     {#<p class="pcnavtitle">#}
  67.     {#<span class="nav_en">Contact</span> #}
  68.     {#<span class="nav_jp">お問い合わせ</span>#}
  69.     {#</p>#}
  70.     {#</div>#}
  71.     {#</a>#}
  72. {# ナビ #}
  73. {# ナビ #}
  74.     <a href="http://flap1994.com/" class="navtitlelink" target="_blank">
  75.     <div class="pcnavtitlebox lastglobal">
  76.     <span class="navicon"></span>
  77.     <p class="pcnavtitle">
  78.     <span class="nav_en">Home</span> 
  79.     <span class="nav_jp">ホーム</span>
  80.     </p>
  81.     </div>
  82.     </a>
  83. {# ナビ #}
  84. </div>
  85. </div>