app/template/default/Block/footer.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.         
  11. .ec-footerNavi {
  12.     padding: 10px;
  13.         
  14. .ec-footerRole .ec-footerRole__inner {
  15.   font-size:12px !important;
  16. }
  17. @media only screen and (min-width: 768px) {
  18.     .ec-footerRole .ec-footerRole__inner {
  19.           line-height: 1.5;
  20. }
  21. }
  22. .ec-footerTitle .ec-footerTitle__copyright {
  23.   font-size:11px !important;
  24. }        
  25.         
  26.         
  27.     </style>
  28. {% endblock %}
  29. <div class="ec-footerRole">
  30.     <div class="ec-footerRole__inner">
  31.         <ul class="ec-footerNavi">
  32.             <li class="ec-footerNavi__link">
  33.                 <a href="{{ url('about') }}">{{ 'front.block.footer.about_us'|trans }}</a>
  34.             </li>
  35.             <li class="ec-footerNavi__link">
  36.                 <a href="{{ url('contact') }}">{{ 'front.block.footer.inquiry'|trans }}</a>
  37.             </li>
  38.             <li class="ec-footerNavi__link">
  39.                 <a href="{{ url('privacy') }}">{{ 'front.block.footer.privacy_policy'|trans }}</a>
  40.             </li>
  41.             <li class="ec-footerNavi__link">
  42.                 <a href="{{ url('tradelaw') }}">{{ 'front.block.footer.act_on_specified_commercial_transactions'|trans }}</a>
  43.             </li>
  44.         </ul>
  45.         <div class="ec-footerTitle">
  46.             <div class="ec-footerTitle__copyright">COPYRIGHT© 2024 ZENPOKOENFUN ALL RIGHT RESERVED.</div>
  47.         </div>
  48.     </div>
  49. </div>