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 stylesheet %}
  10.     <style>
  11.         .ec-off1Grid .attorney {
  12.             margin: 70px auto;
  13.         }
  14.         .ec-off1Grid .attorney p {
  15.             font-family: "Noto Serif JP";
  16.             font-weight: bold;
  17.             font-size: 18px;
  18.             line-height: 40px;
  19.             text-align: center;
  20.             color: #009fff;
  21.         }
  22.         .ec-off1Grid .attorney a {
  23.             display: block;
  24.             max-width: 400px;
  25.             width: 100%;
  26.             margin: auto;
  27.         }
  28.         .ec-off1Grid .attorney a img {
  29.             width: 100%;
  30.             height: auto;
  31.         }
  32.         .ec-off1Grid .attorney a:hover {
  33.             opacity: .85;
  34.         }
  35.     </style>
  36. {% endblock %}
  37. {% block main %}
  38. <div class="ec-role">
  39.     <div class="ec-pageHeader">
  40.         <h1>{{ '当サイトについて'|trans }}</h1>
  41.     </div>
  42.     <div class="ec-off1Grid">
  43.         <div class="ec-off1Grid__cell">
  44.             <div class="ec-borderedDefs">
  45.                 {% if BaseInfo.shop_name|default is not empty %}
  46.                     <dl id="help_about_box__shop_name">
  47.                         <dt>
  48.                             <label class="ec-label">{{ '店名'|trans }}</label>
  49.                         </dt>
  50.                         <dd>{{ BaseInfo.shop_name }}</dd>
  51.                     </dl>
  52.                 {% endif %}
  53.                 {% if BaseInfo.company_name|default is not empty %}
  54.                     <dl id="help_about_box__company_name">
  55.                         <dt>
  56.                             <label class="ec-label">{{ '会社名'|trans }}</label>
  57.                         </dt>
  58.                         <dd>{{ BaseInfo.company_name }}</dd>
  59.                     </dl>
  60.                 {% endif %}
  61.                 {% if BaseInfo.postal_code|default is not empty %}
  62.                     <dl id="help_about_box__address">
  63.                         <dt>
  64.                             <label class="ec-label">{{ '住所'|trans }}</label>
  65.                         </dt>
  66.                         <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br />
  67.                             {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }}
  68.                         </dd>
  69.                     </dl>
  70.                 {% endif %}
  71.                 {% if BaseInfo.phone_number|default is not empty %}
  72.                     <dl id="help_about_box__phone_number">
  73.                         <dt>
  74.                             <label class="ec-label">{{ '電話番号'|trans }}</label>
  75.                         </dt>
  76.                         <a href="tel:0113741948"><dd>{{ BaseInfo.phone_number }}</dd></a>
  77.                     </dl>
  78.                 {% endif %}
  79.                 {% if BaseInfo.business_hour|default is not empty %}
  80.                     <dl id="help_about_box__business_hour">
  81.                         <dt>
  82.                             <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  83.                         </dt>
  84.                         <dd>{{ BaseInfo.business_hour }}</dd>
  85.                     </dl>
  86.                 {% endif %}
  87.                 {% if BaseInfo.good_traded|default is not empty %}
  88.                     <dl id="help_about_box__good_traded">
  89.                         <dt>
  90.                             <label class="ec-label">{{ '取り扱い商品'|trans }}</label>
  91.                         </dt>
  92.                         <dd>{{ BaseInfo.good_traded|nl2br }}</dd>
  93.                     </dl>
  94.                 {% endif %}
  95.                 {% if BaseInfo.message|default is not empty %}
  96.                     <dl id="help_about_box__message">
  97.                         <dt>
  98.                             <label class="ec-label">{{ 'メッセージ'|trans }}</label>
  99.                         </dt>
  100.                         <dd>{{ BaseInfo.message|nl2br }}</dd>
  101.                     </dl>
  102.                 {% endif %}
  103.             </div>
  104.             <div class="attorney">
  105.                 <p>HPはこちら</p>
  106.                 <a href="https://sr-fujiwatari.com/" target="_blank">
  107.                     <img src="{{ asset('ichiro/assets/img/attorney.png', 'user_data') }}" alt="バナー" />
  108.                 </a>
  109.             </div>
  110.         </div>
  111.     </div>
  112. </div>
  113. {% endblock %}