mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
48 lines
2.0 KiB
HTML
48 lines
2.0 KiB
HTML
{%- macro sidebar %}
|
|
{%- if builder != 'htmlhelp' %}
|
|
<div class="sidebar">
|
|
<div class="sidebarwrapper">
|
|
{% if display_toc %}
|
|
<h3>Table Of Contents</h3>
|
|
{{ toc }}
|
|
{% endif %}
|
|
{%- if prev %}
|
|
<h4>Previous topic</h4>
|
|
<p class="topless"><a href="{{ prev.link|e }}" title="previous chapter">{{ prev.title }}</a></p>
|
|
{%- endif %}
|
|
{%- if next %}
|
|
<h4>Next topic</h4>
|
|
<p class="topless"><a href="{{ next.link|e }}" title="next chapter">{{ next.title }}</a></p>
|
|
{%- endif %}
|
|
{% if sourcename %}
|
|
<h3>This Page</h3>
|
|
<ul class="this-page-menu">
|
|
{% if builder == 'web' %}
|
|
<li><a href="#comments">Comments ({{ comments|length }} so far)</a></li>
|
|
<li><a href="{{ pathto('@edit/' + sourcename)|e }}">Suggest Change</a></li>
|
|
<li><a href="{{ pathto('@source/' + sourcename)|e }}">Show Source</a></li>
|
|
{% elif builder == 'html' %}
|
|
<li><a href="{{ pathto('_sources/' + sourcename, true)|e }}">Show Source</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
{% endif %}
|
|
{% if customsidebar %}
|
|
{{ rendertemplate(customsidebar) }}
|
|
{% endif %}
|
|
{% if current_page_name != "search" %}
|
|
<h3>{{ builder == 'web' and 'Keyword' or 'Quick' }} search</h3>
|
|
<form class="search" action="{{ pathto('search') }}" method="get">
|
|
<input type="text" name="q" size="18"> <input type="submit" value="Go" />
|
|
<input type="hidden" name="check_keywords" value="yes" />
|
|
<input type="hidden" name="area" value="default" />
|
|
</form>
|
|
{% if builder == 'web' %}
|
|
<p style="font-size: 90%">Enter a module, class or function name.</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{%- endif %}
|
|
{%- endmacro %}
|
|
|