blob: 67601b65586c4bb9734af8e259465b47c645a4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{#
opnfvdocs/etc/pagemenu.html
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sphinx sidebar template: link to pdfcrowd.
:copyright: Copyright 2016 by OPNFV.
:license: Apache 2.0 .
#}
<div role="note" aria-label="source link">
<h3>{{ _('This Page') }}</h3>
<ul class="this-page-menu">
{%- if show_source and has_source and sourcename %}
<li><a href="{{ pathto('_sources/' + sourcename, true)|e }}"
rel="nofollow">{{ _('Show Source') }}</a></li>
{%- else %}
{# Note: single HTML won't have source rst #}
<li><a href="//pdfcrowd.com/url_to_pdf/">Save to PDF</a></li>
{%- endif %}
</ul>
</div>
|