/usr/share/sphinx/themes/cloud/relations.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 | {#
cloud/relations.html
~~~~~~~~~~~~~~~~~~~~
Sphinx sidebar template: relation links,
modified from sphinx's basic/relations.html
#}
{%- if prev %}
<div class="sphinxprev">
<h4>{{ theme_sidebar_prev_title or _('Previous topic') }}</h4>
<p class="topless"><a href="{{ prev.link|e }}"
title="{{ theme_sidebar_prev_title or _('Previous topic') }}">← {{ prev.title }}</a></p>
</div>
{%- endif %}
{%- if next %}
<div class="sphinxnext">
<h4>{{ theme_sidebar_next_title or _('Next topic') }}</h4>
<p class="topless"><a href="{{ next.link|e }}"
title="{{ theme_sidebar_next_title or _('Next topic') }}">→ {{ next.title }}</a></p>
</div>
{%- endif %}
|