app/template/airconwork/Block/new_voice_investigation.twig line 1

Open in your IDE?
  1. {% set Voices = CustomizeAreaVoice() %}
  2. {% if Voices|length > 0 %}
  3. <div class="c-section">
  4.   <h2 class="c-title-07"><span class="s-text"><span class="js-text-area"></span>での工事実績</span></h2>
  5.   <ul class="c-grid col4 p-top-voice__menu">
  6.   {% for Voice in Voices %}
  7.       <li class="c-img-zoom">
  8.           <a href="{{ url('voice-dtl', {'id': Voice.id}) }}" class="c-card-04">
  9.               <figure class="c-card-04__thum">
  10.                 <!--<img src="{{ asset(Voice.voice_image|no_image_product, 'save_image') }}" alt="">-->
  11.                 <img src="/html/upload/voice_image/{{ Voice.voice_image }}" alt="" style="width: 100%;">
  12.               </figure>
  13.               <p class="c-card-04__text"><span class="s-text">{{ Voice.guest_comment }}</span><span class="s-link">工事実績詳細へ</span></p>
  14.           </a>
  15.       </li>
  16.   {% endfor %}
  17.   </ul>
  18.   <div class="block-center">
  19.     <a href="{{ url('voice') }}" class="c-btn-01"><span class="s-text">工事実績一覧を見る</span>
  20.       <i class="s-icon">
  21.         <svg>
  22.           <use xlink:href="{{ asset('assets/img/ico/ico_arrow_forward.svg#obj') }}"></use>
  23.         </svg>
  24.       </i></a>
  25.   </div>
  26. </div>
  27. {% endif %}