diff options
author | Jakob Unterwurzacher | 2024-10-31 21:58:31 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2024-10-31 21:58:31 +0100 |
commit | 7cf6ace72e76889ac831e9807f7a9a14a4b7272b (patch) | |
tree | de72c9b27fcc787022603bbdb4267a2969bd8c30 /gocryptfs-readthedocs/nav.html | |
parent | 615f0b7443d4f682ab3d28eb8ee1ea0cd21f29da (diff) |
Port to mkdocs 1.6.1
Diffstat (limited to 'gocryptfs-readthedocs/nav.html')
-rw-r--r-- | gocryptfs-readthedocs/nav.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gocryptfs-readthedocs/nav.html b/gocryptfs-readthedocs/nav.html deleted file mode 100644 index 6b6d7d8..0000000 --- a/gocryptfs-readthedocs/nav.html +++ /dev/null @@ -1,22 +0,0 @@ -{%- if nav_item.url %} - <a class="{% if nav_item.active%}current{%endif%}" href="{{ nav_item.url }}">{{ nav_item.title }}</a> -{%- else %} - <span class="caption-text">{{ nav_item.title }}</span> -{%- endif %} - -{%- if nav_item == page or nav_item.children %} - <ul class="subnav"> - {%- if nav_item == page %} - {% include 'toc.html' %} - {%- endif %} - {%- if nav_item.children %} - {%- set navlevel = navlevel + 1%} - {%- for nav_item in nav_item.children %} - <li class="{% if navlevel > 2 %}toctree-l{{ navlevel }}{% endif %}{% if nav_item.active%} current{%endif%}"> - {% include 'nav.html' %} - </li> - {%- endfor %} - {%- set navlevel = navlevel - 1%} - {%- endif %} - </ul> -{%- endif %} |