app/template/default/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. <section class="bg__attr">
  11.   <div class="ec-role">
  12.     <div class="ec-pageHeader">
  13.         <h1>{{ '当サイトについて'|trans }}</h1>
  14.     </div>
  15.     <div class="ec-off1Grid">
  16.         <div class="ec-off1Grid__cell">
  17.             <div class="ec-borderedDefs">
  18.                 {% if BaseInfo.shop_name|default is not empty %}
  19.                     <dl id="help_about_box__shop_name">
  20.                         <dt>
  21.                             <label class="ec-label">{{ '店名'|trans }}</label>
  22.                         </dt>
  23.                         <dd>{{ BaseInfo.shop_name }}</dd>
  24.                     </dl>
  25.                 {% endif %}
  26.                 {% if BaseInfo.company_name|default is not empty %}
  27.                     <dl id="help_about_box__company_name">
  28.                         <dt>
  29.                             <label class="ec-label">{{ '会社名'|trans }}</label>
  30.                         </dt>
  31.                         <dd>{{ BaseInfo.company_name }}</dd>
  32.                     </dl>
  33.                 {% endif %}
  34.                 {% if BaseInfo.postal_code|default is not empty %}
  35.                     <dl id="help_about_box__address">
  36.                         <dt>
  37.                             <label class="ec-label">{{ '住所'|trans }}</label>
  38.                         </dt>
  39.                         <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br />
  40.                             {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }}
  41.                         </dd>
  42.                     </dl>
  43.                 {% endif %}
  44.                 {% if BaseInfo.phone_number|default is not empty %}
  45.                     <dl id="help_about_box__phone_number">
  46.                         <dt>
  47.                             <label class="ec-label">{{ '電話番号'|trans }}</label>
  48.                         </dt>
  49.                         <dd>{{ BaseInfo.phone_number }}</dd>
  50.                     </dl>
  51.                 {% endif %}
  52.                 {% if BaseInfo.business_hour|default is not empty %}
  53.                     <dl id="help_about_box__business_hour">
  54.                         <dt>
  55.                             <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  56.                         </dt>
  57.                         <dd>{{ BaseInfo.business_hour }}</dd>
  58.                     </dl>
  59.                 {% endif %}
  60.                 {% if BaseInfo.good_traded|default is not empty %}
  61.                     <dl id="help_about_box__good_traded">
  62.                         <dt>
  63.                             <label class="ec-label">{{ '取り扱い商品'|trans }}</label>
  64.                         </dt>
  65.                         <dd>{{ BaseInfo.good_traded|nl2br }}</dd>
  66.                     </dl>
  67.                 {% endif %}
  68.                 {% if BaseInfo.message|default is not empty %}
  69.                     <dl id="help_about_box__message">
  70.                         <dt>
  71.                             <label class="ec-label">{{ 'メッセージ'|trans }}</label>
  72.                         </dt>
  73.                         <dd>{{ BaseInfo.message|nl2br }}</dd>
  74.                     </dl>
  75.                 {% endif %}
  76.             </div>
  77.         </div>
  78.     </div>
  79.   </div>
  80. </section>
  81. {% endblock %}