app/template/bravers/Help/about.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% extends 'default_frame.twig' %}
  9. {% block main %}
  10. <div class="ec-role">
  11.     <ul class="breadcrumb p-none">
  12.         <li class="breadcrumb__item">
  13.             <a href="{{ url('homepage') }}" class="breadcrumb__item__link">
  14.                 ホーム
  15.             </a>
  16.         </li>
  17.         <li class="breadcrumb__item">
  18.             <p class="breadcrumb__item__arrow">></p>
  19.         </li>
  20.         <li class="breadcrumb__item">
  21.             <p class="breadcrumb__item__text">会社概要</p>
  22.         </li>
  23.     </ul>
  24.     <div class="ec-pageHeader text-center">
  25.         <h1>{{ '会社概要'|trans }}</h1>
  26.     </div>
  27.     <div class="ec-about">
  28.         <div class="ec-borderedDefs">
  29.             {% if BaseInfo.shop_name|default is not empty %}
  30.                 <dl id="help_about_box__shop_name">
  31.                     <dt>
  32.                         <label class="ec-label">{{ '店名'|trans }}</label>
  33.                     </dt>
  34.                     <dd>{{ BaseInfo.shop_name }}</dd>
  35.                 </dl>
  36.             {% endif %}
  37.             {% if BaseInfo.company_name|default is not empty %}
  38.                 <dl id="help_about_box__company_name">
  39.                     <dt>
  40.                         <label class="ec-label">{{ '会社名'|trans }}</label>
  41.                     </dt>
  42.                     <dd>{{ BaseInfo.company_name }}</dd>
  43.                 </dl>
  44.             {% endif %}
  45.             {% if BaseInfo.postal_code|default is not empty %}
  46.                 <dl id="help_about_box__address">
  47.                     <dt>
  48.                         <label class="ec-label">{{ '住所'|trans }}</label>
  49.                     </dt>
  50.                     <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br />
  51.                         {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }}
  52.                     </dd>
  53.                 </dl>
  54.             {% endif %}
  55.             {% if BaseInfo.phone_number|default is not empty %}
  56.                 <dl id="help_about_box__phone_number">
  57.                     <dt>
  58.                         <label class="ec-label">{{ '電話番号'|trans }}</label>
  59.                     </dt>
  60.                     <dd class="disable-auto-tel">{{ BaseInfo.phone_number }}</dd>
  61.                 </dl>
  62.             {% endif %}
  63.             {% if BaseInfo.business_hour|default is not empty %}
  64.                 <dl id="help_about_box__business_hour">
  65.                     <dt>
  66.                         <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  67.                     </dt>
  68.                     <dd>{{ BaseInfo.business_hour }}</dd>
  69.                 </dl>
  70.             {% endif %}
  71.             {% if BaseInfo.good_traded|default is not empty %}
  72.                 <dl id="help_about_box__good_traded">
  73.                     <dt>
  74.                         <label class="ec-label">{{ '取り扱い商品'|trans }}</label>
  75.                     </dt>
  76.                     <dd>{{ BaseInfo.good_traded|nl2br }}</dd>
  77.                 </dl>
  78.             {% endif %}
  79.             {% if BaseInfo.message|default is not empty %}
  80.                 <dl id="help_about_box__message">
  81.                     <dt>
  82.                         <label class="ec-label">{{ 'メッセージ'|trans }}</label>
  83.                     </dt>
  84.                     <dd>{{ BaseInfo.message|nl2br }}</dd>
  85.                 </dl>
  86.             {% endif %}
  87.         </div>
  88.     </div>
  89. </div>
  90. {% endblock %}