/
githubmirror
/
incubator-mxnet
Обзор
Документация
Войти
/
githubmirror
/
incubator-mxnet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/python_docs/themes/mx-theme/mxtheme/layout.html
106 строк
3 KB
Yang Shi
improve python api website ux - make toc sticky (#18863)
06 авг 2020, 00:24
Не верифицирован
06 авг 2020, 00:24
a78f137
Код
Авторство
О чём код?
{% extends "basic/layout.html" %} {%- block doctype -%} <!DOCTYPE html> {%- endblock %} {% block htmltitle %} <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <style> .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); padding: 12px 16px; z-index: 1; text-align: left; } .dropdown:hover .dropdown-content { display: block; } .dropdown-option:hover { color: #FF4500; } .dropdown-option-active { color: #FF4500; font-weight: lighter; } .dropdown-option { color: #000000; font-weight: lighter; } .dropdown-header { color: #FFFFFF; display: inline-flex; } .dropdown-caret { width: 18px; height: 54px; } .dropdown-caret-path { fill: #FFFFFF; } </style> {{ super() }} {% endblock %} {% set css_files = css_files + [ '_static/material-design-lite-1.3.0/material.' + theme_primary_color|e + '-' + theme_accent_color|e + '.min.css', '_static/sphinx_materialdesign_theme.css', '_static/fontawesome/all.css', '_static/fonts.css', '_static/feedback.css', ] %} {% set script_files = script_files + [ '_static/sphinx_materialdesign_theme.js' ] %} {%- block header %}{% endblock %} {%- block relbar1 %}{% endblock %} {%- block relbar2 %}{% include "relations.html" %}{% endblock %} {%- block sidebar2 %}{% endblock %} {%- block body_tag %} <body> {%- block header_top %}{% include "header_top.html" %}{% endblock %} <div class="mdl-layout mdl-js-layout {% if theme_fixed_header|tobool %}mdl-layout--fixed-header{% endif %} {% if theme_fixed_drawer|tobool %}mdl-layout--fixed-drawer{% endif %}"> {%- block md_header %}{% include "header.html" %}{% endblock %} {%- block sidebar1 %}{% include "drawer.html" %}{% endblock %} <main class="mdl-layout__content" tabIndex="0"> {% endblock %} {%- block document %} <div class="page-content" role="main"> {% block body %} {% endblock %} {% include "feedback.html" %} </div> <div class="side-doc-outline"> <div class="side-doc-outline--content"> {%- block right_sidebar %} {% include "localtoc.html" %}{% endblock %} </div> </div> {% endblock %} {%- block footer %} {% if theme_show_footer|tobool %}{% include "footer.html" %}{% endif %} {% endblock %} </main> </div> </body>