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. <div class="ec-footerRole">
  9.     <div class="ec-footerRole__inner">
  10.         <div class="ec-footerRole__inner_three_sec">
  11.             {# フッターロゴ #}
  12.             <div
  13.                 class="ec-footerTitle__logo">
  14.                 <a href="{{ url('homepage') }}">
  15.                     <img src="/html/user_data/assets/img/logo/wishssh_footer_logo.png" alt="{{ 'front.block.footer.nav.logo'|trans }}">
  16.                 </a>
  17.             </div>
  18.             {# フッターナビゲーション #}
  19.             <ul class="ec-footerNavi">
  20.                 <li class="ec-footerNavi__link">
  21.                     <a href="{{ url('homepage') }}">{{ 'front.block.footer.nav.top'|trans|nl2br }}</a>
  22.                 </li>
  23.                 <li class="ec-footerNavi__link">
  24.                     <a href="{{ url('question') }}">{{ 'front.block.footer.nav.guide'|trans|nl2br }}</a>
  25.                 </li>
  26.                 <li class="ec-footerNavi__link">
  27.                     <a href="{{ url('product_list') }}">{{ 'front.block.footer.nav.product_list'|trans|nl2br }}</a>
  28.                 </li>
  29.                 <li class="ec-footerNavi__link">
  30.                     <a href="{{ url('help_agreement') }}">{{ 'front.block.footer.nav.term_of_use'|trans|nl2br }}</a>
  31.                 </li>
  32.                 <li class="ec-footerNavi__link">
  33.                     <a href="{{ url('product_list') }}#cat_9">{{ 'front.block.footer.nav.regular_item'|trans|nl2br }}</a>
  34.                 </li>
  35.                 <li class="ec-footerNavi__link">
  36.                     <a href="{{ url('help_privacy') }}">{{ 'front.block.footer.nav.privacy'|trans|nl2br }}</a>
  37.                 </li>
  38.                 <li class="ec-footerNavi__link">
  39.                     <a href="{{ url('evidence') }}">{{ 'front.block.footer.nav.evidence'|trans|nl2br }}</a>
  40.                 </li>
  41.                 <li class="ec-footerNavi__link">
  42.                     <a href="{{ url('help_tradelaw') }}">{{ 'front.block.footer.nav.trade_law'|trans|nl2br }}</a>
  43.                 </li>
  44.                 <li class="ec-footerNavi__link">
  45.                 </li>
  46.                 <li class="ec-footerNavi__link">
  47.                     <a href="{{ url('contact') }}">{{ 'front.block.footer.nav.contact'|trans|nl2br }}</a>
  48.                 </li>
  49.             </ul>
  50.             {# カレンダー表示部分 #}
  51.             <div class="footer_calendar">
  52.                 {% set calendar_data = calendar_service.getCalendarData() %}
  53.     
  54.                 {% include 'Block/calendar.twig' with {
  55.                     'ThisMonthTitle': calendar_data.ThisMonthTitle,
  56.                     'NextMonthTitle': calendar_data.NextMonthTitle,
  57.                     'ThisMonthCalendar': calendar_data.ThisMonthCalendar,
  58.                     'NextMonthCalendar': calendar_data.NextMonthCalendar
  59.                 } %}
  60.             </div>
  61.         </div>
  62.         {# コピーライト #}
  63.         <div class="ec-footerTitle">
  64.             <div class="ec-footerTitle__copyright">copyright (c){{ BaseInfo.shop_name }}all rights reserved.</div>
  65.         </div>
  66.     </div>
  67. </div>