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. <div class="ec-role">
  11.     <div class="ec-pageHeader">
  12.         <h1>{{ '当サイトについて'|trans }}</h1>
  13.     </div>
  14.     <div class="ec-off1Grid">
  15.         <div class="ec-off1Grid__cell">
  16.             <div class="ec-borderedDefs">
  17.                 {% if BaseInfo.shop_name|default is not empty %}
  18.                     <dl id="help_about_box__shop_name">
  19.                         <dt>
  20.                             <label class="ec-label">{{ '店名'|trans }}</label>
  21.                         </dt>
  22.                         <dd>{{ BaseInfo.shop_name }}</dd>
  23.                     </dl>
  24.                 {% endif %}
  25.                 {% if BaseInfo.company_name|default is not empty %}
  26.                     <dl id="help_about_box__company_name">
  27.                         <dt>
  28.                             <label class="ec-label">{{ '会社名'|trans }}</label>
  29.                         </dt>
  30.                         <dd>{{ BaseInfo.company_name }}</dd>
  31.                     </dl>
  32.                 {% endif %}
  33.                 {% if BaseInfo.postal_code|default is not empty %}
  34.                     <dl id="help_about_box__address">
  35.                         <dt>
  36.                             <label class="ec-label">{{ '住所'|trans }}</label>
  37.                         </dt>
  38.                         <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br />
  39.                             {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }}
  40.                         </dd>
  41.                     </dl>
  42.                 {% endif %}
  43.                 {% if BaseInfo.phone_number|default is not empty %}
  44.                     <dl id="help_about_box__phone_number">
  45.                         <dt>
  46.                             <label class="ec-label">{{ '電話番号'|trans }}</label>
  47.                         </dt>
  48.                         <dd>{{ BaseInfo.phone_number }}</dd>
  49.                     </dl>
  50.                 {% endif %}
  51.                     <dl id="help_about_box__business_hour">
  52.                         <dt>
  53.                             <label class="ec-label">{{ '営業時間'|trans }}</label>
  54.                         </dt>
  55.                         <dd>ご注文は24時間受け付けております。</dd>
  56.                     </dl>
  57.                 {% if BaseInfo.business_hour|default is not empty %}
  58.                     <dl id="help_about_box__business_hour">
  59.                         <dt>
  60.                             <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  61.                         </dt>
  62.                         <dd>{{ BaseInfo.business_hour }}</dd>
  63.                     </dl>
  64.                 {% endif %}
  65.                     <dl id="help_about_box__business_hour">
  66.                         <dt>
  67.                             <label class="ec-label">{{ '電話受付時間'|trans }}</label>
  68.                         </dt>
  69.                         <dd>平日AM 10:00-PM2:00<br />※土日祝祭日、夏季休業日、年末年始はお休みをいただいております。</dd>
  70.                     </dl>
  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.               {# 適格請求書発行事業者登録番号 #}
  80.                   <dl id="help_about_box__good_traded">
  81.                     <dt>
  82.                       <label class="ec-label">適格請求書発行</br>事業者登録番号</label>
  83.                     </dt>
  84.                     <dd>T4180001024571</dd>
  85.                   </dl>
  86.                 {% if BaseInfo.message|default is not empty %}
  87.                     <dl id="help_about_box__message">
  88.                         <dt>
  89.                             <label class="ec-label">{{ 'メッセージ'|trans }}</label>
  90.                         </dt>
  91.                         <dd>{{ BaseInfo.message|nl2br }}</dd>
  92.                     </dl>
  93.                 {% endif %}
  94.             </div>
  95.         </div>
  96.     </div>
  97. </div>
  98. {% endblock %}