app/template/unishop/Block/footer.twig line 1

Open in your IDE?
  1. <div class="container-fluid inner">
  2.     <div class="footer_nikk">
  3.        <div class="call">
  4. <p>お問い合わせ</p>
  5. <p>TEL:{{ BaseInfo.phone_number }}</p>
  6. <p>(受付:{{ BaseInfo.business_hour }})</p>
  7.         </div>
  8. <!--        <div class="mail">
  9. <p>メールでのお問い合わせ</p>
  10. <div class="def_button1" ontouchstart=""><div class="eff-down"></div><a href="{{ url('contact') }}">お問い合わせフォーム</a></div>
  11.         </div>-->
  12.     </div>
  13. {% if is_granted('ROLE_USER') %}
  14.     <div class="footer_link">
  15.            <div class="block1">
  16.               <h5>マイページ</h5>
  17. {% include 'Block/mypg_def.twig' %}
  18.            </div>
  19.         {% if app.user.school.item_visible_type != constant('\\Customize\\Entity\\School::ITEM_VISIBLE_TYPE_MATOME') %}
  20.            <div class="block2">
  21.               <h5>アイテム一覧</h5>
  22.              {{ render(path('block_category_def')) }}
  23.            </div>
  24.         {% endif %}
  25.            <div class="block1">
  26.               <h5>お買い物ガイド</h5>
  27. {% include 'Block/guidemenu_def.twig' %}
  28.            </div>
  29.            <div class="block1">
  30.               <h5>企業情報</h5>
  31. {% include 'Block/company_menu.twig' %}
  32.            </div>
  33.     </div>
  34. {% else %}
  35. {% endif %}
  36.     <div class="footer_copy">
  37.         <p class="official">
  38. <a href="{{ url('help_agreement') }}">ご利用規約</a>
  39. <a href="{{ url('help_privacy') }}">プライバシーポリシー</a>
  40. <a href="{{ url('help_tradelaw') }}">特定商取引に基づく表示</a>
  41.         </p>
  42.         <p class="copy">Copyright© {{ BaseInfo.shop_name_eng }} CO.,LTD. All Rights Reserved.</p>
  43.     </div>
  44. </div>