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>{{ BaseInfo.company_name }}</p>
  5. <p>TEL:075-708-8626</p>
  6. <p>(受付:9:00~18:00/日・祝休み)</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. <!--
  31.               <h5>コーディネート</h5>
  32.               <ul>
  33.                  <li><a href="{{ url('user_data', {"route": "outfit"}) }}">コーディネート一覧</a></li>
  34.               </ul>
  35. --!>
  36.               <h5>その他</h5>
  37.               <ul>
  38.                  <li><a href="{{ url('user_data', {'route': 'commitment_uniform'}) }}">制服へのこだわり</a></li>
  39.                  <li><a href="{{ url('user_data', {'route': 'correct_size'}) }}">サイズの選び方</a></li>
  40.               </ul>
  41.            </div>
  42.     </div>
  43. {% else %}
  44. {% endif %}
  45.     <div class="footer_copy">
  46.         <p class="official">
  47. <a href="{{ url('help_agreement') }}">ご利用規約</a>
  48. <a href="{{ url('help_privacy') }}">プライバシーポリシー</a>
  49. <a href="{{ url('help_tradelaw') }}">特定商取引に基づく表示</a>
  50.         </p>
  51.         <p class="copy">Copyright© {{ BaseInfo.shop_name_eng }} CO.,LTD. All Rights Reserved.</p>
  52.     </div>
  53. </div>