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

Open in your IDE?
  1. {% set Voices = CustomizeNewVoice() %}
  2. {% if Voices|length > 0 %}
  3. {% for Voice in Voices %}
  4. <li class="c-img-zoom">
  5. <a href="{{ url('voice-dtl', {'id': Voice.id}) }}" class="c-card-04">
  6. <figure class="c-card-04__thum">
  7. <img src="/html/upload/voice_image/{{ Voice.voice_image }}" alt="{{ Voice.guest_pref }}{{ Voice.guest_address }} {{ Voice.guest_name }}様の業務用エアコン{{ Voice.guest_content }}の室内機イメージ"></figure>
  8. <p class="c-card-04__text"><span class="s-text">{{ Voice.staff_comment }}</span><span class="s-link">続きを読む</span></p>
  9. </a>
  10. </li>
  11. {% endfor %}
  12. {% endif %}