You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
471 B
21 lines
471 B
6 years ago
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Default theme implementation to display a responsive table of contents.
|
||
|
*
|
||
|
* Returns HTML for a responsive table of contents.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - desktop: A render array represent a table of content for desktop.
|
||
|
* - mobile: A render array represent a table of content for mobile.
|
||
|
*
|
||
|
* @ingroup themeable
|
||
|
*/
|
||
|
#}
|
||
|
{% set classes = ['toc', 'toc-responsive'] %}
|
||
|
<div {{ attributes.addClass(classes) }}>
|
||
|
{{ desktop }}
|
||
|
{{ mobile }}
|
||
|
</div>
|
||
|
|