Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / classy / templates / navigation / book-navigation.html.twig
1 {#
2 /**
3  * @file
4  * Theme override to navigate books.
5  *
6  * Presented under nodes that are a part of book outlines.
7  *
8  * Available variables:
9  * - tree: The immediate children of the current node rendered as an unordered
10  *   list.
11  * - current_depth: Depth of the current node within the book outline. Provided
12  *   for context.
13  * - prev_url: URL to the previous node.
14  * - prev_title: Title of the previous node.
15  * - parent_url: URL to the parent node.
16  * - parent_title: Title of the parent node. Not printed by default. Provided
17  *   as an option.
18  * - next_url: URL to the next node.
19  * - next_title: Title of the next node.
20  * - has_links: Flags TRUE whenever the previous, parent or next data has a
21  *   value.
22  * - book_id: The book ID of the current outline being viewed. Same as the node
23  *   ID containing the entire outline. Provided for context.
24  * - book_url: The book/node URL of the current outline being viewed. Provided
25  *   as an option. Not used by default.
26  * - book_title: The book/node title of the current outline being viewed.
27  *
28  * @see template_preprocess_book_navigation()
29  */
30 #}
31 {{ attach_library('classy/book-navigation') }}
32 {% if tree or has_links %}
33   <nav id="book-navigation-{{ book_id }}" class="book-navigation" role="navigation" aria-labelledby="book-label-{{ book_id }}">
34     {{ tree }}
35     {% if has_links %}
36       <h2 class="visually-hidden" id="book-label-{{ book_id }}">{{ 'Book traversal links for'|t }} {{ book_title }}</h2>
37       <ul class="book-pager">
38       {% if prev_url %}
39         <li class="book-pager__item book-pager__item--previous">
40           <a href="{{ prev_url }}" rel="prev" title="{{ 'Go to previous page'|t }}"><b>{{ '‹'|t }}</b> {{ prev_title }}</a>
41         </li>
42       {% endif %}
43       {% if parent_url %}
44         <li class="book-pager__item book-pager__item--center">
45           <a href="{{ parent_url }}" title="{{ 'Go to parent page'|t }}">{{ 'Up'|t }}</a>
46         </li>
47       {% endif %}
48       {% if next_url %}
49         <li class="book-pager__item book-pager__item--next">
50           <a href="{{ next_url }}" rel="next" title="{{ 'Go to next page'|t }}">{{ next_title }} <b>{{ '›'|t }}</b></a>
51         </li>
52       {% endif %}
53     </ul>
54     {% endif %}
55   </nav>
56 {% endif %}