mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-08 21:10:06 +01:00
* Move the search box to the sidebar * Move the next/prev/etc. in the topbar to the first row, and remove the 2nd row in the topbar * Adjust the margins of the sidebar and doc body up to the new size of the topbar * Remove the Next/Prev items from the sidebar * Move the "show page source" to the bottom of the sidebar and reduce the font
16 lines
484 B
HTML
16 lines
484 B
HTML
{#
|
|
basic/sourcelink.html
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Sphinx sidebar template: "show source" link.
|
|
|
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
#}
|
|
{%- if show_source and has_source and sourcename %}
|
|
<div id="sourcelink" role="note" aria-label="source link">
|
|
<a href="{{ pathto('_sources/' + sourcename, true)|e }}"
|
|
rel="nofollow">{{ _('Show page source') }}</a>
|
|
</div>
|
|
{%- endif %}
|