You are here

calendar-empty-day.html.twig in Calendar 8

Format an empty day on a calendar.

Available variables:

  • curday: The current day to display.
  • view: The view.

File

templates/calendar-empty-day.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Format an empty day on a calendar.
  5. *
  6. * Available variables:
  7. * - curday: The current day to display.
  8. * - view: The view.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. {% if view.dateInfo.calendarType != 'day' %}
  14. <div class="calendar-empty">&nbsp;</div>
  15. {% else %}
  16. <div class="calendar-dayview-empty">{% trans %}Empty day{% endtrans %}</div>
  17. {% endif %}