summaryrefslogtreecommitdiffstats
path: root/common/sphinx_rtd_theme_rtems/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'common/sphinx_rtd_theme_rtems/layout.html')
-rw-r--r--common/sphinx_rtd_theme_rtems/layout.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/sphinx_rtd_theme_rtems/layout.html b/common/sphinx_rtd_theme_rtems/layout.html
index 0fe6c65..3542bea 100644
--- a/common/sphinx_rtd_theme_rtems/layout.html
+++ b/common/sphinx_rtd_theme_rtems/layout.html
@@ -67,7 +67,11 @@
{%- endblock %}
{# CSS #}
- <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
+ {%- if sphinx_version <= "5.9.0" -%}
+ <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
+ {%- else %}
+ <link rel="stylesheet" href="{{ pathto('_static/' + styles[-1], 1) }}" type="text/css" />
+ {%- endif %}
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
{%- for css in css_files %}
{%- if css|attr("rel") %}