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