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 mb0">{{ '店名'|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 mb0">{{ '会社名'|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 mb0">{{ '住所'|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.                 <dl id="help_about_box__phone_number">
  44.                     <dt>
  45.                         <label class="ec-label mb0">{{ '電話番号'|trans }}</label>
  46.                     </dt>
  47.                     <dd>078-851-6688(※お問い合わせ専用)</dd>
  48.                 </dl>
  49.                 
  50.                 <dl id="help_about_box__phone_number">
  51.                     <dt>
  52.                         <label class="ec-label mb0">{{ 'FAX番号'|trans }}</label>
  53.                     </dt>
  54.                     <dd>078-851-6722</dd>
  55.                 </dl>
  56.                 
  57.                 <dl id="help_about_box__phone_number">
  58.                     <dt>
  59.                         <label class="ec-label mb0">{{ 'メールアドレス'|trans }}</label>
  60.                     </dt>
  61.                     <dd>shop@oneconcept.jp</dd>
  62.                 </dl>
  63.                 {% if BaseInfo.business_hour|default is not empty %}
  64.                     <dl id="help_about_box__business_hour">
  65.                         <dt>
  66.                             <label class="ec-label mb0">{{ '店舗営業時間'|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 mb0">{{ '取り扱い商品'|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 mb0">{{ 'メッセージ'|trans }}</label>
  83.                         </dt>
  84.                         <dd>{{ BaseInfo.message|nl2br }}</dd>
  85.                     </dl>
  86.                 {% endif %}
  87.             </div>
  88.             
  89.         </div>
  90.     </div>
  91. </div>
  92. {% endblock %}