diff options
| author | Sebastian Wiesner <basti.wiesner@gmx.net> | 2010-04-10 13:56:34 +0200 |
|---|---|---|
| committer | Sebastian Wiesner <basti.wiesner@gmx.net> | 2010-04-10 13:56:34 +0200 |
| commit | 8fc71b69486efeacb4886bed092093f4c06891f4 (patch) | |
| tree | b722e118c4f3d69dec7549cc3c6feafedc66c9d5 /sphinx/themes/basic/layout.html | |
| parent | be48de20205e9100debc5d7573f8e8c620f74244 (diff) | |
| download | sphinx-8fc71b69486efeacb4886bed092093f4c06891f4.tar.gz | |
Fixed #382: CSS files are already prefixed with _static/
Diffstat (limited to 'sphinx/themes/basic/layout.html')
| -rw-r--r-- | sphinx/themes/basic/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/themes/basic/layout.html b/sphinx/themes/basic/layout.html index c844dabc..13b7cc57 100644 --- a/sphinx/themes/basic/layout.html +++ b/sphinx/themes/basic/layout.html @@ -91,7 +91,7 @@ <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" /> <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" /> {%- for cssfile in css_files %} - <link rel="stylesheet" href="{{ pathto('_static/' + cssfile, 1) }}" type="text/css" /> + <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" /> {%- endfor %} {%- if not embedded %} <script type="text/javascript"> |
