summaryrefslogtreecommitdiff
path: root/mkdocs-material/material/nav.html
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2018-08-28 17:19:32 -0400
committerRusty Wagner <rusty@vector35.com>2018-08-28 17:19:32 -0400
commit20e06506a3d96c7327ca5d729ab01e8c2a7cff3c (patch)
tree65880063ccbdcb45cc247a0138915d8560d2ec27 /mkdocs-material/material/nav.html
parent5841af2db8e8dcf4e0da0c438ac040c5fa90038b (diff)
parent426bb3d8b47b93658bf969c429a8b98adae13c30 (diff)
Merge branch 'dev' into test_stack_adjust
Diffstat (limited to 'mkdocs-material/material/nav.html')
-rw-r--r--mkdocs-material/material/nav.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/mkdocs-material/material/nav.html b/mkdocs-material/material/nav.html
deleted file mode 100644
index c926c085..00000000
--- a/mkdocs-material/material/nav.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% if nav_item.children %}
- <li>
- <span class="section">{{ nav_item.title }}</span>
- <ul>
- {% for nav_item in nav_item.children %}
- {% include "nav.html" %}
- {% endfor %}
- </ul>
- </li>
-{% else %}
- <li>
- <a class="{% if nav_item.active %}current{% endif %}" title="{{ nav_item.title }}" href="{{ nav_item.url }}">
- {{ nav_item.title }}
- </a>
- {% if nav_item == current_page %}
- {% if h1 %}
- {% set toc = (toc | first).children %}
- {% endif %}
- {% if toc and (toc | first) %}
- <ul>
- {% for toc_item in toc %}
- <li class="anchor">
- <a title="{{ toc_item.title }}" href="{{ toc_item.url }}">
- {{ toc_item.title }}
- </a>
- </li>
- {% endfor %}
- </ul>
- {% endif %}
- {% endif %}
- </li>
-{% endif %} \ No newline at end of file