Same filename in this branch
  1. 10 core/modules/book/templates/book-all-books-block.html.twig
  2. 10 core/themes/olivero/templates/navigation/book-all-books-block.html.twig
  3. 10 core/themes/stable9/templates/navigation/book-all-books-block.html.twig
  4. 10 core/themes/claro/templates/classy/navigation/book-all-books-block.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-all-books-block.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/book/templates/book-all-books-block.html.twig
  2. 9 core/modules/book/templates/book-all-books-block.html.twig

Default theme implementation for rendering book outlines within a block.

This template is used only when the block is configured to "show block on all pages", which presents multiple independent books on all pages.

Available variables:

  • book_menus: Book outlines.

    • id: The parent book ID.
    • title: The parent book title.
    • menu: The top-level book links.

See also

template_preprocess_book_all_books_block()

File

core/modules/book/templates/book-all-books-block.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for rendering book outlines within a block.
  5. *
  6. * This template is used only when the block is configured to "show block on all
  7. * pages", which presents multiple independent books on all pages.
  8. *
  9. * Available variables:
  10. * - book_menus: Book outlines.
  11. * - id: The parent book ID.
  12. * - title: The parent book title.
  13. * - menu: The top-level book links.
  14. *
  15. * @see template_preprocess_book_all_books_block()
  16. *
  17. * @ingroup themeable
  18. */
  19. #}
  20. {% for book in book_menus %}
  21. <nav role="navigation" aria-label="{% trans %}Book outline for {{ book.title }}{% endtrans %}">
  22. {{ book.menu }}
  23. </nav>
  24. {% endfor %}

Related topics