templates/web/customer/body.twig line 1

Open in your IDE?
  1. {##
  2.  # Common layout
  3.  #}
  4. <!DOCTYPE html>
  5. <html lang="{{ this.currentLanguage.getCode() }}"{% for k, v in this.getHTMLAttributes() %} {{ k }}="{{ v }}"{% endfor %}>
  6.   {{ widget('\\XLite\\View\\Header') }}
  7. <body {% if this.getBodyClass() %}class="{{ this.getBodyClass() }}"{% endif %}>
  8. {{ widget_list('body_top') }}
  9. <!--email_off-->
  10. {% do this.displayCommentedData(this.getCommonJSData()) %}
  11. {{ widget_list('body') }}
  12. {##
  13.  # Please note that any custom list child of 'body' will NOT have its CSS/JS resources loaded because the resources block is being 'body' child itself. Use 'layout.main' or 'layout.footer' instead.
  14.  #}
  15. {{ widget('\\XLite\\View\\Footer') }}
  16. <!--/email_off-->
  17. </body>
  18. </html>