You are here

calendar-month-row.html.twig in Calendar 8

Template to display a row

Available variables:

  • inner: The rendered string of the row's contents.
  • class
  • iehint

File

templates/calendar-month-row.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Template to display a row
  5. *
  6. * Available variables:
  7. * - inner: The rendered string of the row's contents.
  8. * - class
  9. * - iehint
  10. *
  11. * @ingroup themeable
  12. */
  13. #}
  14. <tr class="{{ class }}" iehint="{{ iehint }}">
  15. {{ inner }}
  16. </tr>