Skip to content

Commit

Permalink
Remove deprecated style keyword
Browse files Browse the repository at this point in the history
Fixes: 8230

Style keyword is deprecated in sphinx 7.x
  • Loading branch information
kbaikov committed May 2, 2024
1 parent 3185941 commit 662908f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/sources/.templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ <h3>Related Topics</h3>
<title>{{ title|striptags }}{{ titlesuffix }}</title>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
{%- for style in syles %}
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
{%- endfor %}

{%- if not embedded %}
{%- block scripts %}
Expand Down

0 comments on commit 662908f

Please sign in to comment.