diff options
Diffstat (limited to 'docs/_templates')
-rw-r--r-- | docs/_templates/layout.html | 9 | ||||
-rw-r--r-- | docs/_templates/my_custom_sidebar.html | 2 |
2 files changed, 9 insertions, 2 deletions
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html index 975cd9813..7a1cf9fe6 100644 --- a/docs/_templates/layout.html +++ b/docs/_templates/layout.html @@ -2,4 +2,11 @@ {% extends "!layout.html" %} {# Custom CSS overrides #} -{% set css_files = css_files + ['_static/my-styles.css'] %} +{% set css_files = css_files + ['_static/custom.css'] %} + +{%- block extrahead %} +{# Add custom things to the head HTML tag #} +{# Call the parent block #} + +{{ super() }} +{%- endblock %}
\ No newline at end of file diff --git a/docs/_templates/my_custom_sidebar.html b/docs/_templates/my_custom_sidebar.html index 6b259bc93..1d0dfac5a 100644 --- a/docs/_templates/my_custom_sidebar.html +++ b/docs/_templates/my_custom_sidebar.html @@ -1,3 +1,3 @@ <ul class="globaltoc"> {{ toctree(maxdepth=theme_globaltoc_depth|toint, collapse=False,includehidden=theme_globaltoc_includehidden|tobool) }} -</ul>
\ No newline at end of file +</ul> |