templates/web/customer/404/parts/contact_info.twig line 1

Open in your IDE?
  1. {##
  2.  # 404 contact info
  3.  #
  4.  # @ListChild (list="404.default", weight="500")
  5.  # @ListChild (list="404.product", weight="500")
  6.  # @ListChild (list="404.category", weight="500")
  7.  #}
  8. <div class="page-404">
  9.   {% if this.getPhone() %}
  10.     <div class="phone">
  11.       <span class="name">{{ t('Phone') }}:</span>
  12.       <span class="value">{{ this.getPhone() }}</span>
  13.     </div>
  14.   {% endif %}
  15.   {% if this.isShowEmail() and this.getEmail() %}
  16.     <div class="email">
  17.       <a href="mailto:{{ this.getEmail() }}">{{ this.getEmail() }}</a>
  18.     </div>
  19.   {% endif %}
  20. </div>