You are here

vefl-onecol.html.twig in Views exposed form layout 8

Template for a one column vefl layout.

This template provides a very simple "one column" vefl display layout.

Variables:

  • $id: An optional CSS id to use for the layout.
  • $content: An array of content, each item in the array is keyed to one vefl of the layout. This layout supports the following sections:

    • content.middle: The only vefl in the layout.

File

layouts/onecol/vefl-onecol.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Template for a one column vefl layout.
  5. *
  6. * This template provides a very simple "one column" vefl display layout.
  7. *
  8. * Variables:
  9. * - $id: An optional CSS id to use for the layout.
  10. * - $content: An array of content, each item in the array is keyed to one
  11. * vefl of the layout. This layout supports the following sections:
  12. * - content.middle: The only vefl in the layout.
  13. */
  14. #}
  15. <div class="vefl-1col" {% if css_id %}{{ css_id }}{% endif %}>
  16. {{ content.middle }}
  17. </div>