templates/components/common/_develop_item.html.twig line 1

Open in your IDE?
  1. {% for item in develop_items %}
  2.   <div class="c-develop_wrap">
  3.     <div class="c-develop_img">
  4.       <img class="pc-style" src="{{ item.img }}" alt="{{ item.img_alt }}">
  5.       <img class="sp-style" src="{{ item.img_sp }}" alt="{{ item.img_sp_alt }}">
  6.     </div>
  7.     <div class="c-develop_textarea">
  8.       <div class="c-developtext-wrap">
  9.         <h3 class="c-develop_title">{{ item.title | raw }} {% if item.icon_type is defined %}
  10.             {% if item.icon_type == "ec" %}
  11.               <div class="c-develop_title_row">
  12.                 <img class="c-develop_title_icon" src="{{ asset('build/images/common/icon-cart.png') }}" alt="カートアイコン">
  13.                 <span class="c-develop_title_label">EC販売</span>
  14.               </div>
  15.             {% endif %}
  16.           {% endif %} </h3>
  17.         <p class="c-develop_text">{{ item.shop | raw }}</p>
  18.         <p class="c-develop_text">{{ item.text | raw }}</p>
  19.       </div>
  20.       <div class="c-develop_button">
  21.         {% for button in item.buttons %}
  22.           {% include "components/common/_button.html.twig" with button %}
  23.         {% endfor %}
  24.       </div>
  25.     </div>
  26.   </div>
  27. {% endfor %}