app/template/default/Block/logo.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. <div class="ec-role clearfix">
  9.     <div class="ec-headerRole sp_only">
  10.         <div class="ec-headerRole__title">
  11.             <div class="ec-headerTitle">
  12.                 <div class="ec-headerTitle__title">
  13.                     <p>
  14.                         <a href="{{ url('homepage') }}">
  15.                             {{ BaseInfo.shop_name }}
  16.                             <!-- <img src="{{ asset('assets/img/common/logo.png', 'user_data') }}"  alt="{{ BaseInfo.shop_name }}" class="logo"> -->
  17.                         </a>
  18.                     </p>
  19.                 </div>
  20.             </div>
  21.         </div>
  22.     </div>
  23.     <div class="ec-headerNaviRole__right sp_only clearfix">
  24.         <div class="ec-headerNaviRole__nav">
  25.             <div class="ec-headerNav">
  26.                 <div class="ec-headerRole__navSP return">
  27.                     <div class="ec-headerNavSPreturn">
  28.                         <i class="fas fa-reply"></i>
  29.                     </div>
  30.                 </div>
  31.                 <div class="ec-headerRole__navSP">
  32.                     {{ include('Block/nav_sp.twig') }}
  33.                 </div>
  34.             </div>
  35.         </div>
  36.         <div class="ec-headerRole__cart">
  37.             {{ include('Block/cart.twig') }}
  38.         </div>
  39.     </div>
  40.     <div class=" head_search">
  41.         {{ render(path('block_search_product')) }}
  42.     </div>
  43. </div>
  44. <script>
  45.     $(function() {
  46.         $(".ec-headerNavSPreturn").on("click", function(){
  47.             window.history.back();
  48.         });
  49.     });
  50. </script>