mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
13 lines
No EOL
411 B
Twig
Executable file
13 lines
No EOL
411 B
Twig
Executable file
{% import 'macros/macros.html.twig' as toc_macros %}
|
|
|
|
{% if active or toc_config_var('active') %}
|
|
<div class="page-toc">
|
|
{% set table_of_contents = toc_items(page.content) %}
|
|
{% if table_of_contents is not empty %}
|
|
<h3>{{ 'PLUGIN_PAGE_TOC.TABLE_OF_CONTENTS'|t }}</h3>
|
|
<ul>
|
|
{{ toc_macros.toc_loop(table_of_contents.children) }}
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %} |