mirror of https://github.com/aria2/aria2
Update sphinx_rtd_theme
parent
936d64d555
commit
35f1e326ec
|
@ -12,7 +12,7 @@ from sphinx.locale import _
|
||||||
from sphinx.util.logging import getLogger
|
from sphinx.util.logging import getLogger
|
||||||
|
|
||||||
|
|
||||||
__version__ = '2.0.0rc3'
|
__version__ = '2.0.0rc5'
|
||||||
__version_full__ = __version__
|
__version_full__ = __version__
|
||||||
|
|
||||||
logger = getLogger(__name__)
|
logger = getLogger(__name__)
|
||||||
|
|
|
@ -28,12 +28,17 @@
|
||||||
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
|
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
|
||||||
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
|
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- for css in css_files %}
|
{%- for css_file in css_files %}
|
||||||
{{ css_tag(css) }}
|
{%- if css_file|attr("filename") %}
|
||||||
|
{{ css_tag(css_file) }}
|
||||||
|
{%- else %}
|
||||||
|
<link rel="stylesheet" href="{{ pathto(css_file, 1)|escape }}" type="text/css" />
|
||||||
|
{%- endif %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
||||||
{%- for cssfile in extra_css_files %}
|
{# "extra_css_files" is a theme option and it's always a string #}
|
||||||
{{ css_tag(cssfile) }}
|
{%- for css_file in extra_css_files %}
|
||||||
|
<link rel="stylesheet" href="{{ pathto(css_file, 1)|escape }}" type="text/css" />
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
|
|
||||||
{#- FAVICON
|
{#- FAVICON
|
||||||
|
|
Loading…
Reference in New Issue