diff options
author | mathieui <mathieui@mathieui.net> | 2021-01-31 20:35:38 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-01-31 20:37:33 +0100 |
commit | a85e5225f93d600c35b9493ab4f4d737ee0c9839 (patch) | |
tree | 17039bd0e0f3376bd249fc3be0b0d50c6f30aa04 /docs/_templates | |
parent | 3c19f69c257e4e8ea0eaa9c1d73138365b906895 (diff) | |
download | slixmpp-a85e5225f93d600c35b9493ab4f4d737ee0c9839.tar.gz slixmpp-a85e5225f93d600c35b9493ab4f4d737ee0c9839.tar.bz2 slixmpp-a85e5225f93d600c35b9493ab4f4d737ee0c9839.tar.xz slixmpp-a85e5225f93d600c35b9493ab4f4d737ee0c9839.zip |
docs: change theme to furo
it looks better, and has a dark mode
Diffstat (limited to 'docs/_templates')
-rw-r--r-- | docs/_templates/layout.html | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html deleted file mode 100644 index 0a97cb70..00000000 --- a/docs/_templates/layout.html +++ /dev/null @@ -1,69 +0,0 @@ -{# - haiku/layout.html - ~~~~~~~~~~~~~~~~~ - - Sphinx layout template for the haiku theme. - - :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -#} -{% extends "basic/layout.html" %} -{% set script_files = script_files + ['_static/theme_extras.js'] %} -{% set css_files = css_files + ['_static/print.css'] %} - -{# do not display relbars #} -{% block relbar1 %}{% endblock %} -{% block relbar2 %}{% endblock %} - -{% macro nav() %} - <p> - {%- block haikurel1 %} - {%- endblock %} - {%- if prev %} - «  <a href="{{ prev.link|e }}">{{ prev.title }}</a> -   ::   - {%- endif %} - <a class="uplink" href="{{ pathto(master_doc) }}">{{ _('Contents') }}</a> - {%- if next %} -   ::   - <a href="{{ next.link|e }}">{{ next.title }}</a>  » - {%- endif %} - {%- block haikurel2 %} - {%- endblock %} - </p> -{% endmacro %} - -{% block content %} - <div class="header"> - {%- block haikuheader %} - {%- if theme_full_logo != "false" %} - <a href="{{ pathto('index') }}"> - <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/> - </a> - {%- else %} - {%- if logo -%} - <img class="rightlogo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/> - {%- endif -%} - <h1 class="heading"><a href="{{ pathto('index') }}"> - <span>{{ title|striptags }}</span></a></h1> - <h2 class="heading"><span>{{ shorttitle|e }}</span></h2> - {%- endif %} - {%- endblock %} - </div> - <div class="topnav"> - {{ nav() }} - </div> - <div class="content"> - {#{%- if display_toc %} - <div id="toc"> - <h3>Table Of Contents</h3> - {{ toc }} - </div> - {%- endif %}#} - {% block body %}{% endblock %} - </div> - <div class="bottomnav"> - {{ nav() }} - </div> -{% endblock %} - |