modules/QSL/AMP/templates/web/customer/modules/QSL/AMP/layout/header/header.logo.twig line 1

Open in your IDE?
  1. {##
  2.  # Header logo
  3.  #
  4.  # @ListChild (list="amp.layout.header", weight="100")
  5.  #}
  6. <div id="{{ this.getUniqueId('logo') }}" class="company-logo i-c">
  7.     <a href="{{ this.getAbsoluteURL('') }}" title="{{ this.getLogoAlt() }}">
  8.         <amp-img src="{{ this.getAbsoluteURL(this.getLogo()) }}" width="1" height="1" layout="responsive">
  9.             <noscript>
  10.                 <img src="{{ this.getAbsoluteURL(this.getLogo()) }}" alt="{{ this.getLogoAlt() }}" />
  11.             </noscript>
  12.         </amp-img>
  13.     </a>
  14. </div>