/usr/share/sphinx/themes/cloud/quicklinks.html is in cloud-sptheme-common 1.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {#
cloud/quicklinks.html
~~~~~~~~~~~~~~~~~~~
Provides links mirroring the relbar, for use on pages such as the TOC and searchbox.
#}
<div class="sphinxquicklinks">
<h3><a href="{{ pathto(master_doc) }}"
title="{{ sidebar_master_title|e or master_doc|title|e }}">
{{ sidebar_quicklinks_title or _('Quick Links') }}
</a></h3>
<ul>
{% block quicklinkslist %}
{% if theme_roottarget and theme_roottarget != master_doc %}
<li><a href="{{ pathto(theme_roottarget) }}"
title="{{ theme_sidebar_root_title|e or _("Front Page") }}">
{{ theme_sidebar_root_title|e or _("Front Page") }}</a></li>
{% endif %}
{%- for entry in rellinks[::-1] %}
{# NOTE: entry is [page, title, key, label] #}
{% if entry[3] not in ["previous", "next"] %}
<li><a href="{{ pathto(entry[0]) }}"
title="{{ entry[1]|striptags|e }}">{{ entry[1]|e }}</a></li>
{% endif %}
{%- endfor %}
{% endblock %}
</ul>
</div>
|