app/template/default/Block/special_page_block.twig line 1

Open in your IDE?
  1. {% set SpecialBanners = repository('Customize\\Entity\\Banner').getPublicBannersByTypeId(3) %}
  2. <article class="ec-custom_layout s_title mt-50 special_page" id="toppage-special_page-block">
  3.     <section>
  4.         <h1 class="s_title_left lite-brown">
  5.             スペシャルページ
  6.             <span class="title">
  7.                 SPECIAL PAGE
  8.             </span>
  9.         </h1>
  10.         <div class="s_title_right gold"></div>
  11.         <img src="{{ asset('assets/img/common/cat_line.jpg') }}" class="line_cart">
  12.         <table>
  13.             <tbody>
  14.                 <tr>
  15.                     {% for Banner in SpecialBanners %}
  16.                     <td>
  17.                         <a href="{{ Banner.url ?: 'javascript:void(0);' }}" {% if Banner.url %}target="{{ Banner.link_method == 1 ? '_blank' : '_self' }}"{% endif %}>
  18.                             <img src="{{ url('homepage') }}html/upload/save_banner/{{ Banner.image }}" alt=""></a>
  19.                     </td>
  20.                     {% endfor %}
  21.                 </tr>
  22.             </tbody>
  23.         </table>
  24.     </section>
  25. </article>