/usr/share/sphinx/themes/cloud/layout.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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | {#
cloud/layout.html
~~~~~~~~~~~~~~~~~
Sphinx layout template for the cloud theme.
:copyright: Copyright 2009-2011 Assurance Technologies LLC
:license: BSD
roottarget - optional target for root link (default to toc)
logotarget - optional target for logo link (defaults to root target)
googleanalytics_id - if set, enabled google analytics snippet & footer
googleanalytics_path - optional subpatch for GA cookie
collapsiblesidebar - enable collapsible sidebar support
#}
{% extends "basic/layout.html" %}
{% set reldelim2 = reldim2 is not defined and ' ' or reldelim2 %}
{# add script file to instrument collapsable sections and other features #}
{% set script_files = script_files + ['_static/cloud.js'] %}
{# add font stylesheets #}
{% set css_files = css_files + [theme_fontcssurl] %}
{# make root link redirectable #}
{%- set theme_roottarget = (theme_roottarget == "<toc>" and master_doc or theme_roottarget) %}
{% block rootrellink %}
<li><a href="{{ pathto(theme_roottarget) }}">{{shorttitle|e}}</a>{{reldelim1}}</li>
{% endblock %}
{# make logo link redirectable #}
{%- set theme_logotarget = (theme_logotarget == "<root>" and theme_roottarget or (theme_logotarget == "<toc>" and master_doc or theme_logotarget)) %}
{%- block sidebarlogo %}
{%- if logo %}
<p class="logo"><a href="{{ pathto(theme_logotarget) }}" title="{{ theme_logotarget }}">
<img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
</a></p>
{%- endif %}
{%- endblock %}
{# wrap relbars in distinct classes to make themeing easier #}
{%- block relbar1 %}
<div class="relbar-top">
{{ super() }}
</div>
{% endblock %}
{%- block relbar2 %}
<div class="relbar-bottom">
{{ super() }}
</div>
{% endblock %}
{% block extrahead -%}
{{ super() }}
<meta name="viewport" content="width=device-width, initial-scale=1">
{%- endblock %}
{% block footer -%}
{{ super() }}
<!-- cloud_sptheme 1.4 -->
{%- endblock %}
|