summaryrefslogtreecommitdiff
path: root/mkdocs-material/material/nav.html
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-08-29 15:26:00 -0400
committerPeter LaFosse <peter@vector35.com>2018-08-31 14:21:07 -0400
commitf0ccb75e7d80a6c0ae8b01d794b929f03bc6ea6d (patch)
tree7569fe7689062b265329ad0f649705aa8caab922 /mkdocs-material/material/nav.html
parenta6b801afadada75afd2b1779edee8d203f3b3140 (diff)
parent426bb3d8b47b93658bf969c429a8b98adae13c30 (diff)
Merging with dev
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