custom/apps/DmitsDeliveryTime/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_inner  %}
  3.     {% set holidayDays=((config('DmitsDeliveryTime.config.holidaydate')|date('U')- 'now'|date('U'))/60/60/24 )|round(0, 'ceil') %}
  4.     {% if holidayDays>0  && config('DmitsDeliveryTime.config.showHolidayTextHeader')%}
  5.         {{ 'dmits.deliverytime.custom.holdiayTextHeader'|trans({
  6.             '%holidayDate%': config('DmitsDeliveryTime.config.holidaydate')|format_date('short', locale=app.request.locale)
  7.         })|raw }}
  8.     {% endif %}
  9.     {{ parent() }}
  10. {% endblock %}