Fix several layout issues in sidebar (#5581)

This commit is contained in:
Yuge Zhang 2023-05-29 19:04:38 +08:00 коммит произвёл GitHub
Родитель 277cf6a19e
Коммит 1605cd0c53
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 17 добавлений и 2 удалений

4
docs/templates/layout.html поставляемый
Просмотреть файл

@ -10,8 +10,6 @@
{% block scripts %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
{{ super() }}
{#- CUSTOM THEME #}
<style>
:root {
@ -36,6 +34,8 @@
}
</script>
{{ super() }}
{% endblock %}
{#- REPLACE ATTRIBUTES INSTANTLY TO DISABLE SOME HOOKS #}

15
docs/templates/sidebar.html поставляемый Normal file
Просмотреть файл

@ -0,0 +1,15 @@
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="{{ pathto(master_doc)|e }}" title="{{ docstitle|striptags|e }}" class="md-nav__button md-logo">
<img src="{{ pathto('_static/img/nni-icon.svg', 1) }}" alt="{{ html_title }} logo" width="48" height="48">
</a>
<a href="{{ pathto(master_doc)|e }}"
title="{{ docstitle|striptags|e }}">{{ theme_nav_title or shorttitle }}</a>
</label>
{%- if theme_repo_url %}
<div class="md-nav__source">
{% include "repo.html" %}
</div>
{% endif %}
{% include "globaltoc.html" %}
</nav>