book-all-books-block.html.twig
Same filename in this branch
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-all-books-block.html.twig
- 8.9.x core/themes/seven/templates/classy/navigation/book-all-books-block.html.twig
- 8.9.x core/themes/claro/templates/classy/navigation/book-all-books-block.html.twig
- 8.9.x core/themes/bartik/templates/classy/navigation/book-all-books-block.html.twig
- 8.9.x core/themes/stable/templates/navigation/book-all-books-block.html.twig
- 8.9.x core/themes/classy/templates/navigation/book-all-books-block.html.twig
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-all-books-block.html.twig
- 9 core/themes/olivero/templates/navigation/book-all-books-block.html.twig
- 9 core/themes/stable9/templates/navigation/book-all-books-block.html.twig
- 9 core/themes/seven/templates/classy/navigation/book-all-books-block.html.twig
- 9 core/themes/claro/templates/classy/navigation/book-all-books-block.html.twig
- 9 core/themes/bartik/templates/classy/navigation/book-all-books-block.html.twig
- 9 core/themes/stable/templates/navigation/book-all-books-block.html.twig
- 9 core/themes/classy/templates/navigation/book-all-books-block.html.twig
- 9 core/modules/book/templates/book-all-books-block.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-all-books-block.html.twig
- 10 core/themes/olivero/templates/navigation/book-all-books-block.html.twig
- 10 core/themes/stable9/templates/navigation/book-all-books-block.html.twig
- 10 core/themes/claro/templates/classy/navigation/book-all-books-block.html.twig
- 10 core/modules/book/templates/book-all-books-block.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-all-books-block.html.twig
- 11.x core/themes/olivero/templates/navigation/book-all-books-block.html.twig
- 11.x core/themes/stable9/templates/navigation/book-all-books-block.html.twig
- 11.x core/themes/claro/templates/classy/navigation/book-all-books-block.html.twig
- 11.x 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()
1 theme call to book-all-books-block.html.twig
- BookNavigationBlock::build in core/
modules/ book/ src/ Plugin/ Block/ BookNavigationBlock.php
File
-
core/
modules/ book/ templates/ book-all-books-block.html.twig
View source
- {#
- /**
- * @file
- * 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 template_preprocess_book_all_books_block()
- *
- * @ingroup themeable
- */
- #}
- {% for book in book_menus %}
- <nav role="navigation" aria-label="{% trans %}Book outline for {{ book.title }}{% endtrans %}">
- {{ book.menu }}
- </nav>
- {% endfor %}
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.