summaryrefslogtreecommitdiff
path: root/mkdocs-material/src/drawer.html
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-08-27 19:13:42 -0400
committerJordan Wiens <jordan@psifertex.com>2018-08-27 19:13:42 -0400
commit867353b827eabb294f1cc8d0d825669cf64b7138 (patch)
treefdef5687b3ce7941104e6fa31763c1b08d0d82aa /mkdocs-material/src/drawer.html
parentcbdf8b6925dcf4b5fd29868797fe0195de5680ee (diff)
switch from mkdocs-material to a custom readthedocs style for user docs as well
Diffstat (limited to 'mkdocs-material/src/drawer.html')
-rw-r--r--mkdocs-material/src/drawer.html109
1 files changed, 0 insertions, 109 deletions
diff --git a/mkdocs-material/src/drawer.html b/mkdocs-material/src/drawer.html
deleted file mode 100644
index ac7f7933..00000000
--- a/mkdocs-material/src/drawer.html
+++ /dev/null
@@ -1,109 +0,0 @@
-<!-- Navigation -->
-<nav aria-label="Navigation">
- {% set home = repo_url | default("/", true) %}
-
- <!-- Project information -->
- <a href="{{ home }}" class="project">
-
- <!-- Name and logo -->
- <div class="banner">
-
- <!-- Version -->
- {% if config.extra.logo %}
- <div class="logo">
- <img src="{{ base_url }}/{{ config.extra.logo }}" />
- </div>
- {% endif %}
-
- <!-- Project name and verison -->
- <div class="name">
- <strong>
- {{ site_name }}
- <span class="version">
- {{ config.extra.version }}
- </span>
- </strong>
-
- <!-- Project repository name -->
- {% if repo_id %}
- <br />
- {{ repo_id }}
- {% endif %}
- </div>
- </div>
- </a>
-
- <!-- Repository and table of contents -->
- <div class="scrollable">
- <div class="wrapper">
-
- <!-- Repository -->
- {% if repo_name == "GitHub" and repo_url %}
- <ul class="repo">
- <li class="repo-download">
- {% if config.extra.github and config.extra.github.download_release %}
- {% set version = config.extra.version | default("../latest") %}
- <a href="{{ repo_url }}/releases/tag/{{ version }}" target="_blank"
- title="Download" data-action="download">
- <i class="icon icon-download"></i> Download
- </a>
- {% else %}
- {% set version = config.extra.version | default("master") %}
- <a href="{{ repo_url }}/archive/{{ version }}.zip" target="_blank"
- title="Download" data-action="download">
- <i class="icon icon-download"></i> Download
- </a>
- {% endif %}
- </li>
- <li class="repo-stars">
- <a href="{{ repo_url }}/stargazers" target="_blank"
- title="Stargazers" data-action="star">
- <i class="icon icon-star"></i> Stars
- <span class="count">&ndash;</span>
- </a>
- </li>
- </ul>
- <hr />
- {% endif %}
-
- <!-- Table of contents -->
- <div class="toc">
- <ul>
- {% for nav_item in nav %}
- {% include "nav.html" %}
- {% endfor %}
- </ul>
-
- <!-- Author-related links -->
- {% if config.extra.author %}
- <hr />
- <span class="section">The author</span>
- <ul>
-
- <!-- Twitter -->
- {% if config.extra.author.twitter %}
- {% set author = config.extra.author.twitter %}
- <li>
- <a href="https://twitter.com/{{ author }}" target="_blank"
- title="@{{ author }} on Twitter">
- @{{ author }} on Twitter
- </a>
- </li>
- {% endif %}
-
- <!-- GitHub -->
- {% if config.extra.author.github %}
- {% set author = config.extra.author.github %}
- <li>
- <a href="https://github.com/{{ author }}" target="_blank"
- title="@{{ author }} on GitHub">
- @{{ author }} on GitHub
- </a>
- </li>
- {% endif %}
- </ul>
- {% endif %}
- </div>
- </div>
- </div>
-</nav> \ No newline at end of file