app/template/default/Block/cart1.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. <style>
  10. .list{
  11.  text-align:center;
  12. }
  13. </style>
  14. {% endblock %}
  15. {% set Carts = get_all_carts() %}
  16. {% set totalPrice = get_carts_total_price() %}
  17. {% set totalQuantity = get_carts_total_quantity() %}
  18. <div class="ec-cartNaviWrap">
  19.     <div class="head"><h3 class="text1">現在の資料請求リスト</h3></div>
  20.     <div class="ec-cartNavi">
  21.         <div class="ec-cartNavi__label">
  22.              <div class="ec-cartNavi__price">資料請求リスト:{{ totalQuantity|number_format }}点</div>
  23.         </div>
  24.     </div>
  25.     <div class="ec-categoryRole__listItem">
  26.                 <a href="{{ url('cart') }}?category_id=1">
  27.                     <img class="list" src="{{ asset('assets/img/top/b_box_see_h.gif') }}">
  28.                 </a>
  29.             </div>
  30.     
  31. </div>