{#///////////////////////////////////////////////////////////////////////This template is part of EC-CUBE Design template.Copyright(c) JAPAN ELECTRONIC INDUSTRIAL ARTS CO.LTD.http://www.jeia.co.jp/For the full copyright and license information, please view the LICENSEfile that was distributed with this source code.本テンプレートの著作権は、「株式会社日本電子工藝社」に帰属いたします。※本テンプレートを譲渡・再頒布・転用・第三者へ開示することは禁止いたします。ただし、事業者によるショップ運営者への設置代行を禁止するものではございません。※本テンプレートを申請されたご利用サイトへの設置以外の目的で複製することは禁止いたします。※本テンプレートデータ内のライセンス条項、および著作権に関する記述を削除することはできません。※ご利用サイトを変更することはできません。申請と異なるサイトにてご利用になる場合は、別途、ご利用費用をお支払いただく必要がございます。※本テンプレートの改変にあたり、一切のサポートはいたしかねます。※本テンプレートは、すべての設置環境で動作する事は保証しておりません。///////////////////////////////////////////////////////////////////////#}{#当サイトについて#}{% extends 'default_frame.twig' %}{% block main %}<div class="ec-helpRole"> <div class="ec-pageHeader"> <h1>{{ '当サイトについて'|trans }}</h1> </div> {% include 'Help/navi.twig' %} <div class="ec-borderedDefs"> {% if BaseInfo.shop_name|default is not empty %} <dl id="help_about_box__shop_name"> <dt> <label class="ec-label">{{ '店名'|trans }}</label> </dt> <dd>{{ BaseInfo.shop_name }}</dd> </dl> {% endif %} {% if BaseInfo.company_name|default is not empty %} <dl id="help_about_box__company_name"> <dt> <label class="ec-label">{{ '会社名'|trans }}</label> </dt> <dd>{{ BaseInfo.company_name }}</dd> </dl> {% endif %} {% if BaseInfo.postal_code|default is not empty %} <dl id="help_about_box__address"> <dt> <label class="ec-label">{{ '住所'|trans }}</label> </dt> <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br /> {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }} </dd> </dl> {% endif %} {% if BaseInfo.phone_number|default is not empty %} <dl id="help_about_box__phone_number"> <dt> <label class="ec-label">{{ '電話番号'|trans }}</label> </dt> <dd>{{ BaseInfo.phone_number }}</dd> </dl> {% endif %} {% if BaseInfo.business_hour|default is not empty %} <dl id="help_about_box__business_hour"> <dt> <label class="ec-label">{{ '店舗営業時間'|trans }}</label> </dt> <dd>{{ BaseInfo.business_hour }}</dd> </dl> {% endif %} {% if BaseInfo.good_traded|default is not empty %} <dl id="help_about_box__good_traded"> <dt> <label class="ec-label">{{ '取り扱い商品'|trans }}</label> </dt> <dd>{{ BaseInfo.good_traded|nl2br }}</dd> </dl> {% endif %} {% if BaseInfo.message|default is not empty %} <dl id="help_about_box__message"> <dt> <label class="ec-label">{{ 'メッセージ'|trans }}</label> </dt> <dd>{{ BaseInfo.message|nl2br }}</dd> </dl> {% endif %} </div></div>{% endblock %}