Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
| <div id="navbar" class="navbar navbar-default navbar-fixed-top"> | |
| <div class="navbar-header"> | |
| <!-- .btn-navbar is used as the toggle for collapsed navbar content --> | |
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".nav-collapse"> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| <span class="icon-bar"></span> | |
| </button> | |
| <a class="navbar-brand" href="{{ pathto(master_doc) }}"> | |
| {%- block sidebarlogo %} | |
| {%- if logo %}<img src="{{ pathto('_static/' + logo, 1) }}">{%- endif %} | |
| {%- endblock %} | |
| </a> | |
| <span class="navbar-text navbar-version pull-left"></span> | |
| </div> | |
| <div class="collapse navbar-collapse nav-collapse"> | |
| {% block navbarsearch %} | |
| {% include "navbarsearchbox.html" %} | |
| {% endblock %} | |
| <div class="mobile-nav visible-xs"> | |
| {% block menu %} | |
| {% set toctree = toctree(maxdepth=2, collapse=True, includehidden=True) %} | |
| {% if toctree %} | |
| {{ toctree }} | |
| {% else %} | |
| <!-- Local TOC --> | |
| <div class="local-toc">{{ toc }}</div> | |
| {% endif %} | |
| {% endblock %} | |
| </div> | |
| </div> | |
| </div> |