templates/components/brand/_shop-detail.html.twig line 1

Open in your IDE?
  1. <div class="c-brand_shop-detail-wrap">
  2.   <h3 id="{{ id }}" class="c-brand_shop-detail_title">{{ title | raw }}</h3>
  3.   <div class="c-brand_shop-detail-inner">
  4.     <div class="c-brand_shop-detail_img">
  5.       <img src="{{ img01 }}" alt="" class="pc-style">
  6.       <img src="{{ sp_img01 }}" alt="" class="sp-style">
  7.     </div>
  8.     <div class="c-brand_shop-detail_info">
  9.       <dl class="c-brand_shop-detail_info_wrap">
  10.         <dt class="c-brand_shop-detail_info_title">{{ sales_title }}</dt>
  11.         <dd class="c-brand_shop-detail_info_text">{{ sales_time|raw }}</dd>
  12.         <dd class="c-brand_shop-detail_info_text">{{ sales_time2|raw }}</dd>
  13.         <dd class="c-brand_shop-detail_info_text">{{ sales_time3|raw }}</dd>
  14.         <dd class="c-brand_shop-detail_info_text">{{ sales_time4|raw }}</dd>
  15.       </dl>
  16.       <dl class="c-brand_shop-detail_info_wrap">
  17.         <dt class="c-brand_shop-detail_info_title">{{ holiday_title }}</dt>
  18.         <dd class="c-brand_shop-detail_info_text">{{ holiday_date }}</dd>
  19.       </dl>
  20.       <dl class="c-brand_shop-detail_info_wrap">
  21.         <dt class="c-brand_shop-detail_info_title">{{ tel_title }}</dt>
  22.         <dd class="c-brand_shop-detail_info_text">{{ tel_number }}</dd>
  23.       </dl>
  24.       <dl class="c-brand_shop-detail_info_wrap">
  25.         <dt class="c-brand_shop-detail_info_title">{{ address_title }}</dt>
  26.         <dd class="c-brand_shop-detail_info_text">{{ address|raw }}</dd>
  27.       </dl>
  28.     </div>
  29.     <div class="c-brand_shop-detail_gmap">
  30.       <iframe src="{{ gmap }}" width="100%" height="100%
  31.                                                 " style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  32.     </div>
  33.     <div class="c-brand_shop-detail_button-area">
  34.       {% if href01 is defined %}
  35.         <a class="{{ class01 }}" href="{{ href01 }}">{{ button_text01 }}<img src="{{ asset(src01) }}" alt="" style="width: {{ width01 }}px;height: {{ height01 }}px;"></a>
  36.       {% endif %}
  37.       {% if href02 is defined %}
  38.         <a class="{{ class02 }}" href="{{ href02 }}">{{ button_text02 }}<img src="{{ asset(src02) }}" alt="" style="width: {{ width02 }}px;height: {{ height02 }}px;"></a>
  39.       {% endif %}
  40.       {% if href03 is defined %}
  41.         <a class="{{ class03 }}" href="{{ href03 }}">{{ button_text03 }}<img src="{{ asset(src03) }}" alt="" style="width: {{ width03 }}px;height: {{ height03 }}px;"></a>
  42.       {% endif %}
  43.       {% if href04 is defined %}
  44.         <a class="{{ class04 }}" href="{{ href04 }}" target="_blank">{{ button_text04 }}<img src="{{ asset(src04) }}" alt="" style="width: {{ width04 }}px;height: {{ height04 }}px;"></a>
  45.         {% else %}
  46.       {% endif %}
  47.     </div>
  48.   </div>
  49. </div>