app/template/default/Block/footer1.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. {% block stylesheet %}
  9.     <link rel="stylesheet" href="{{ asset('assets/css/main_module.css', 'user_data') }}">
  10.     {#<link rel="stylesheet" href="{{ asset('assets/css/page/footer1.css', 'user_data') }}">#}
  11. {% endblock %}
  12. <section>
  13.     <div id="footer_contents">
  14.         <div id="footer_links">
  15.             <div class="links1 pc">
  16.                 <p class="title"><a href="{{ url('books') }}"><span>フォトパブ堂書店</span></a></p>
  17.                     <ul>
  18.                     {% set AllCategories = repository('Eccube\\Entity\\Category').getList() %}
  19.                     {% set Categories = AllCategories|filter(c => c.id is not null and c.id == 1) %}
  20.                     {% for Category in Categories %}
  21.                         {% for Child in Category.Children %}
  22.                         <li>
  23.                             <span><a href="{{ url('product_list') }}?category_id={{ Child.id }}">{{ Child }}</a></span>
  24.                         </li>
  25.                         {% endfor %}
  26.                     {% endfor %}
  27.                 </ul>
  28.             </div>
  29.             <div class="links2 pc">
  30.                 <p class="title"><a href="{{ url('photos') }}"><span>フォトパブ写真館</span></a></p>
  31.                 <ul>
  32.                     {% set AllCategories = repository('Eccube\\Entity\\Category').getList() %}
  33.                     {% set Categories = AllCategories|filter(c => c.id is not null and c.id == 6) %}
  34.                     {% for Category in Categories %}
  35.                         {% for Child in Category.Children %}
  36.                             <li>
  37.                                 <span><a href="{{ url('photo-product_list') }}?category_id={{ Child.id }}">{{ Child }}</a></span>
  38.                             </li>
  39.                         {% endfor %}
  40.                     {% endfor %}
  41.                 </ul>
  42.             </div>
  43.             <div class="links3 pc">
  44.                 <p class="title"><a href="https://jihi.photo-pub.co.jp"><span>自費出版サービス</span></a></p>
  45.                 <ul>
  46.                     <li><a href="https://jihi.photo-pub.co.jp/calc.php"><span>簡易自動見積もり</span></a></li>
  47.                     <li><a href="https://jihi.photo-pub.co.jp/qanda.php"><span>よくある質問</span></a></li>
  48.                     <li><a href="https://jihi.photo-pub.co.jp/inquiry/"><span>自費出版に関するご相談</span></a></li>
  49.                 </ul>
  50.             </div>
  51.             <div class="links4 pc">
  52.             <p class="title"><span></span></p>
  53.                 <ul>
  54.                     <li><a href="https://photo-pub.co.jp/news"><span>NEWS</span></a></li>
  55.                     <li><a href="https://photo-pub.co.jp/event"><span>イベント情報</span></a></li>
  56.                     <li><a href="https://photo-pub.co.jp/recruit"><span>各種募集</span></a></li>
  57.                 </ul>
  58.             </div>
  59.             <div class="links5 pc">
  60.                 <p class="title"><span></span></p>
  61.                 <ul>
  62.                     <li><a href="{{ url('contact') }}"><span>お問い合わせ</span></a></li>
  63.                     <li><a href="{{ url('help_privacy') }}"><span>プライバシーポリシー</span></a></li>
  64.                     <li><a href="{{url('help_tradelaw')}}"><span>特定商取引法に基づく表記</span></a></li>
  65.                 </ul>
  66.             </div>
  67.         </div>
  68.         
  69.         <div id="footer_comp">
  70.             <div class="f_company_name">
  71.                 <p class="name">
  72.                     <span>株式会社</span>
  73.                     <span>フォト・パブリッシング</span>
  74.                 </p>
  75.                 <p class="address pc">
  76.                     <span>〒114-0014</span>
  77.                     <span> 東京都北区田端6-1-1 田端ASUKAタワー17階</span><br>
  78.                     <span>TEL.03-4212-3561 FAX.03-4212-3562</span>
  79.                 </p>
  80.                 <p class="address sp">
  81.                     <span>〒114-0014</span><br>
  82.                     <span>東京都北区田端6-1-1 田端ASUKAタワー17階</span><br>
  83.                     <span>TEL.03-4212-3561 FAX.03-4212-3562</span>
  84.                 </p>
  85.             </div>
  86.         </div>
  87.     </div>
  88.     <div class="footer_copyright"> Copyright ©株式会社フォト・パブリッシング. All Rights Reserved.</div>
  89. </section>