app/template/lag/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.             <div class="ec-borderedDefs">
  8.                 {% if BaseInfo.shop_name|default is not empty %}
  9.                     <dl id="help_about_box__shop_name">
  10.                         <dt>
  11.                             <label class="ec-label">{{ '店名'|trans }}</label>
  12.                         </dt>
  13.                         <dd>{{ BaseInfo.shop_name }}</dd>
  14.                     </dl>
  15.                 {% endif %}
  16.                 {% if BaseInfo.company_name|default is not empty %}
  17.                     <dl id="help_about_box__company_name">
  18.                         <dt>
  19.                             <label class="ec-label">{{ '会社名'|trans }}</label>
  20.                         </dt>
  21.                         <dd>{{ BaseInfo.company_name }}</dd>
  22.                     </dl>
  23.                 {% endif %}
  24.                 {% if BaseInfo.postal_code|default is not empty %}
  25.                     <dl id="help_about_box__address">
  26.                         <dt>
  27.                             <label class="ec-label">{{ '住所'|trans }}</label>
  28.                         </dt>
  29.                         <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br />
  30.                             {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }}
  31.                         </dd>
  32.                     </dl>
  33.                 {% endif %}
  34.                 {% if BaseInfo.phone_number|default is not empty %}
  35.                     <dl id="help_about_box__phone_number">
  36.                         <dt>
  37.                             <label class="ec-label">{{ '電話番号'|trans }}</label>
  38.                         </dt>
  39.                         <dd>{{ BaseInfo.phone_number }}</dd>
  40.                     </dl>
  41.                 {% endif %}
  42.                 {% if BaseInfo.business_hour|default is not empty %}
  43.                     <dl id="help_about_box__business_hour">
  44.                         <dt>
  45.                             <label class="ec-label">{{ '店舗営業時間'|trans }}</label>
  46.                         </dt>
  47.                         <dd>{{ BaseInfo.business_hour }}</dd>
  48.                     </dl>
  49.                 {% endif %}
  50.                 {% if BaseInfo.good_traded|default is not empty %}
  51.                     <dl id="help_about_box__good_traded">
  52.                         <dt>
  53.                             <label class="ec-label">{{ '取り扱い商品'|trans }}</label>
  54.                         </dt>
  55.                         <dd>{{ BaseInfo.good_traded|nl2br }}</dd>
  56.                     </dl>
  57.                 {% endif %}
  58.                 {% if BaseInfo.message|default is not empty %}
  59.                     <dl id="help_about_box__message">
  60.                         <dt>
  61.                             <label class="ec-label">{{ 'メッセージ'|trans }}</label>
  62.                         </dt>
  63.                         <dd>{{ BaseInfo.message|nl2br }}</dd>
  64.                     </dl>
  65.                 {% endif %}
  66.             </div>
  67. #}
  68. {% extends 'default_frame.twig' %}
  69. {% block main %}
  70. <div class="ec-role">
  71.     <div class="ec-pageHeader">
  72.         <h1>{{ '当サイトについて'|trans }}</h1>
  73.     </div>
  74.     <div class="ec-off1Grid">
  75.         <div class="ec-off1Grid__cell">
  76.             <div class="ec-borderedDefs"><br><br>
  77.                 <p>YouTubeなどSNSで活動をしているボーダーコリーのリーリエの公式オンラインショップです。<br>
  78.                 もともとボーダーコリーをモチーフにしたグッズなどを探しても、なかなか種類を見つける事ができなかったことから、
  79.                 自分たちでも制作してみようという考えに至り、グッズを制作・販売しております。
  80.                 </p>
  81.                 <br>
  82.             </div>
  83.             <div class="ec-borderedDefs">
  84.                 <dl id="help_about_box__shop_name">
  85.                     <dt>
  86.                         <label class="ec-label">Youtube</label>
  87.                     </dt>
  88.                     <dd><a href="https://www.youtube.com/c/LillieBordercollie">https://www.youtube.com/c/LillieBordercollie</a></dd>
  89.                 </dl>
  90.                 <dl id="help_about_box__shop_name">
  91.                     <dt>
  92.                         <label class="ec-label">Instagram</label>
  93.                     </dt>
  94.                     <dd><a href="https://www.instagram.com/lillie_bcl/">https://www.instagram.com/lillie_bcl/</a></dd>
  95.                 </dl>
  96.                 <dl id="help_about_box__shop_name">
  97.                     <dt>
  98.                         <label class="ec-label">Twitter</label>
  99.                     </dt>
  100.                     <dd><a href="https://twitter.com/lillie_bcl">https://twitter.com/lillie_bcl</a></dd>
  101.                 </dl>
  102.                 <dl id="help_about_box__shop_name">
  103.                     <dt>
  104.                         <label class="ec-label">Facebook</label>
  105.                     </dt>
  106.                     <dd><a href="https://www.facebook.com/lillie.bcl.75">https://www.facebook.com/lillie.bcl.75</a></dd>
  107.                 </dl>
  108.             </div>
  109.         </div>
  110.     </div>
  111. </div>
  112. {% endblock %}