src/Eccube/Resource/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.                     <dl id="help_about_box__shop_name">
  18.                         <dt>
  19.                             <label class="ec-label">{{ '店名'|trans }}</label>
  20.                         </dt>
  21.                         <dd>タスタスアートギャラリーカフェ</dd>
  22.                     </dl>
  23.                     <dl id="help_about_box__company_name">
  24.                         <dt>
  25.                             <label class="ec-label">{{ '会社名'|trans }}</label>
  26.                         </dt>
  27.                         <dd>株式会社タスタス</dd>
  28.                     </dl>
  29.                     <dl id="help_about_box__address">
  30.                         <dt>
  31.                             <label class="ec-label">{{ '住所'|trans }}</label>
  32.                         </dt>
  33.                         <dd>【本社・東京オフィス】
  34. 〒101-0047 東京都千代田区内神田1-11-5 カーサ内神田202<br />
  35. 【長野オフィス】
  36. 〒386-8567 長野県上田市常田3-15-1 信州大学繊維学部内 Fii施設604号室<br />
  37. 【福岡オフィス】
  38. 〒810-0041 福岡市中央区大名 2-6-11 Fukuoka Growth Next
  39.                         </dd>
  40.                     </dl>
  41.                     <dl id="help_about_box__phone_number">
  42.                         <dt>
  43.                             <label class="ec-label">{{ '電話番号'|trans }}</label>
  44.                         </dt>
  45.                         <dd>03-5577-6925</dd>
  46.                     </dl>
  47.                 {% if BaseInfo.business_hour|default is not empty %}
  48.                     <dl id="help_about_box__business_hour">
  49.                         <dt>
  50.                             <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  51.                         </dt>
  52.                         <dd>{{ BaseInfo.business_hour }}</dd>
  53.                     </dl>
  54.                 {% endif %}
  55.                     <dl id="help_about_box__good_traded">
  56.                         <dt>
  57.                             <label class="ec-label">{{ '取り扱い商品'|trans }}</label>
  58.                         </dt>
  59.                         <dd>絵画</dd>
  60.                     </dl>
  61.                 {% if BaseInfo.message|default is not empty %}
  62.                     <dl id="help_about_box__message">
  63.                         <dt>
  64.                             <label class="ec-label">{{ 'メッセージ'|trans }}</label>
  65.                         </dt>
  66.                         <dd>{{ BaseInfo.message|nl2br }}</dd>
  67.                     </dl>
  68.                 {% endif %}
  69.             </div>
  70.         </div>
  71.     </div>
  72. </div>
  73. {% endblock %}