From 4131223a419cac2c802158d344ec5e1935a8daf3 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:26:25 -0400 Subject: [PATCH 01/11] Update mkdocs.yml --- mkdocs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index 8add0d43..bf1e31fe 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,4 +5,7 @@ nav: ## add your custom pages hierarchy here theme: + name: null custom_dir: 'mkdocs_ivory' + include_search_page: true + From 168810e471b415f0a6fff5126dfc9055f8b1ec17 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Mon, 27 Sep 2021 13:28:22 -0400 Subject: [PATCH 02/11] rtd --- mkdocs_ivory/404.html | 6 + mkdocs_ivory/__init__.py | 0 mkdocs_ivory/base.html | 107 ++++++ mkdocs_ivory/breadcrumbs.html | 12 + mkdocs_ivory/css/theme.css | 657 ++++++++++++++++++++++++++++++++++ mkdocs_ivory/footer.html | 20 ++ mkdocs_ivory/img/favicon.ico | Bin 0 -> 1150 bytes mkdocs_ivory/js/theme.js | 21 ++ mkdocs_ivory/main.html | 10 + mkdocs_ivory/mkdocs_theme.yml | 10 + mkdocs_ivory/nav.html | 22 ++ mkdocs_ivory/repo.html | 19 + mkdocs_ivory/search.html | 16 + mkdocs_ivory/searchbox.html | 5 + mkdocs_ivory/toc.html | 7 + 15 files changed, 912 insertions(+) create mode 100644 mkdocs_ivory/404.html create mode 100644 mkdocs_ivory/__init__.py create mode 100644 mkdocs_ivory/base.html create mode 100644 mkdocs_ivory/breadcrumbs.html create mode 100644 mkdocs_ivory/css/theme.css create mode 100644 mkdocs_ivory/footer.html create mode 100644 mkdocs_ivory/img/favicon.ico create mode 100644 mkdocs_ivory/js/theme.js create mode 100644 mkdocs_ivory/main.html create mode 100644 mkdocs_ivory/mkdocs_theme.yml create mode 100644 mkdocs_ivory/nav.html create mode 100644 mkdocs_ivory/repo.html create mode 100644 mkdocs_ivory/search.html create mode 100644 mkdocs_ivory/searchbox.html create mode 100644 mkdocs_ivory/toc.html diff --git a/mkdocs_ivory/404.html b/mkdocs_ivory/404.html new file mode 100644 index 00000000..0d48cf73 --- /dev/null +++ b/mkdocs_ivory/404.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block content %} +

404

+

Page not found

+{% endblock %} \ No newline at end of file diff --git a/mkdocs_ivory/__init__.py b/mkdocs_ivory/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mkdocs_ivory/base.html b/mkdocs_ivory/base.html new file mode 100644 index 00000000..a96493e9 --- /dev/null +++ b/mkdocs_ivory/base.html @@ -0,0 +1,107 @@ + + + + + {%- block site_meta %} + + + + {%- if page and page.is_homepage %} + {% endif %} + {%- if config.site_author %} + {% endif %} + {%- if config.site_favicon %} + + {%- else %} + {% endif %} + {%- endblock %} + + {%- block htmltitle %} + {% if page and page.title and not page.is_hompage %}{{ page.title|striptags }} — {% endif %}{{ config.site_name }} + {%- endblock %} + + {%- block styles %} + + + + + + {%- if config.theme.highlightjs %} + + {%- endif %} + {%- for path in config['extra_css'] %} + + {%- endfor %} + {%- endblock %} + + {%- block libs %} + + {%- if config.theme.highlightjs %} + + {%- for lang in config.theme.hljs_languages %} + + {%- endfor %} + + {%- endif %} + {%- endblock %} + + {%- block extrahead %} {% endblock %} + + + +
+ +
+
+ +
+ + {% block content %}
{{ page.content }}
{% endblock %} + {% block footer %}{% include "footer.html" %}{% endblock %} +
+
+
+ {%- block scripts %} + + + {%- for path in config['extra_javascript'] %} + {% endfor %} + {%- endblock %} + + + diff --git a/mkdocs_ivory/breadcrumbs.html b/mkdocs_ivory/breadcrumbs.html new file mode 100644 index 00000000..c1f1a7f5 --- /dev/null +++ b/mkdocs_ivory/breadcrumbs.html @@ -0,0 +1,12 @@ +{% if page %} + +{% endif %} \ No newline at end of file diff --git a/mkdocs_ivory/css/theme.css b/mkdocs_ivory/css/theme.css new file mode 100644 index 00000000..7f47fc9a --- /dev/null +++ b/mkdocs_ivory/css/theme.css @@ -0,0 +1,657 @@ +html { + font-size: 16px; +} + +*, *::before, *::after { + box-sizing: border-box; +} + +body, button { + font-family: Lato, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; +} + +body { + margin: 0; +} + +code { + font-family: "Fira Code", "Courier New", Consolas, monospace; + font-size: 0.83rem; + color: #7700FF; + border: 1px solid #E0E0E0; + border-radius: 3px; + padding: 1px 4px; + margin: 0px 1px; + background: white; +} + +pre code { + font-size: 0.8rem; +} + +p { + line-height: 1.65rem; +} + +main ul { + margin-top: 0px; + margin-bottom: 8px; +} + +main li { + margin-top: 4px; + margin-bottom: 4px; + line-height: 1.5; +} + +pre { + line-height: 1.6; +} + +a { + color: #39f; + text-decoration: none; +} + +button { + font-size: 1rem; + cursor: pointer; + border: none; + background: transparent; + outline: none; +} + +img { + width: 100%; + max-width: 100%; + height: auto; +} + +/* ul, ol, dl { + margin: 0; + padding: 0; + list-style: none; + list-style-image: none; +} */ + +.nav ul, +.breadcrumbs ul { + padding: 0px; + list-style-type: none; +} + +.site-name { + display: inline-block; + color: #ddd; + font-weight: bold; +} + +.site-name::before { + font-family: "Font Awesome 5 Free"; + content: "\f015"; +} + +.nav-item { + display: block; + position: relative; + font-size: 0.95rem; + line-height: 1.1; + padding-top: 5px; + padding-bottom: 5px; + padding-right: 5px; +} + +.nav-item.section { + color: #ddd; + width: 100%; + text-align: left; +} + +.nav-item.section:hover { + background: #999; + color: #333; +} + +a.nav-item { + color: #999; +} + +a.nav-item.current { + color: #333; + background: #eee; +} + +a.nav-item.current:hover { + color: #333; + background: #bbb; +} + +a.nav-item:hover { + background: #666; +} + +.subnav.hide { + display: none; +} + +.nav-item.section::before { + position: absolute; + text-align: center; + width: 5px; +} + +.nav-item.section::before { + font-family: "Font Awesome 5 Free"; + font-weight: bold; + content: "\f107"; +} + +.nav-item.section.hide::before { + content: "\f105"; +} + +.toctree-l1>.nav-item.section { + padding-left: 25px; +} + +.toctree-l1>a.nav-item { + padding-left: 25px; +} + +.toctree-l1>.nav-item.section::before { + left: 10px; +} + +.toctree-l2>.nav-item.section { + padding-left: 35px; +} + +.toctree-l2>a.nav-item { + padding-left: 25px; +} + +.toctree-l2>.nav-item.section::before { + left: 20px; +} + +.toctree-l3>.nav-item.section { + padding-left: 45px; +} + +.toctree-l3>a.nav-item { + padding-left: 35px; +} + +.toctree-l3>.nav-item.section::before { + left: 30px; +} + +.toctree-l4>.nav-item.section { + padding-left: 55px; +} + +.toctree-l4>a.nav-item { + padding-left: 45px; +} + +.toctree-l4>.nav-item.section::before { + left: 40px; +} + +.toctree-l5>.nav-item.section { + padding-left: 65px; +} + +.toctree-l5>a.nav-item { + padding-left: 55px; +} + +.toctree-l5>.nav-item.section::before { + left: 50px; +} + +.toctree-l6>.nav-item.section { + padding-left: 75px; +} + +.toctree-l6>a.nav-item { + padding-left: 65px; +} + +.toctree-l6>.nav-item.section::before { + left: 45px; +} + +.nav-item.toc { + background: #ccc; + color: #555; + border: none; +} + +.nav-item.toc:hover { + background: #bbb; + color: #555; + border: none; +} + +.repo div { + padding: 0 10px; +} + +.repo div:first-child { + margin-right: auto; +} + +.repo a { + color: #ddd; + font-size: 0.9rem; +} + +.breadcrumbs li { + font-size: 0.9rem; + display: inline; +} + +.footer-buttons { + position: relative; + height: 2.5rem; +} + +.footer-buttons .previous { + position: absolute; + left: 0; + margin: auto; +} + +.footer-buttons .next { + position: absolute; + right: 0; +} + +.footer-buttons a { + display: inline-block; + color: #444; + background: #eee; + padding: 4px 8px; + border: 1px solid #ccc; + font-size: 14px; +} + +.footer-buttons span::after, +.footer-buttons span::before { + font-family: "Font Awesome 5 Free"; + font-weight: bold; +} + +.footer-buttons .previous span::before { + margin-right: 6px; + content: "\f359"; +} + +.footer-buttons .next span::after { + margin-left: 6px; + content: "\f35a"; +} + +.footer-note { + display: flex; + font-size: 0.9rem; + color: #aaa; + height: 40px; + border-top: 1px solid #ccc; + align-items: center; + justify-content: center; +} + +.footer-note a { + color: #88d; +} + +/**************************************/ +/* layout */ +/**************************************/ +#container { + display: flex; +} + +aside { + flex: 0 0 300px; + width: 300px; + order: 1; + background: #333; + z-index: 999; +} + +aside>* { + width: inherit; +} + +.home, .home-top { + display: flex; + background: #48c; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.home { + position: fixed; + top: 0; +} + +.home .search input { + display: inline-block; + border-radius: 40px; + padding: 4px 10px; + outline: none; + width: 250px; + border: 1px solid #999; +} + +.nav { + position: fixed; + overflow-y: auto; + background: #333; +} + +.repo { + display: flex; + background: #222; + position: fixed; + bottom: 0; + height: 40px; + align-items: center; +} + +#spacer { + flex: 0 0 22px; + order: 2; +} + +main { + flex: 1 1 300px; + order: 3; + min-width: 0; + overflow: hidden; +} + +@media screen and (max-width: 768px) { + html.show { + overflow-y: hidden; + } + + aside { + display: none; + } + + aside.show { + display: block; + flex: 0 0 100%; + width: 100%; + } + + .home, .home-top { + height: 40px; + } + + .home-top { + position: relative; + } + + .home .version, + .home .search { + display: none; + } + + .hamburger { + position: absolute; + right: 15px; + } + + .hamburger::before { + font-family: "Font Awesome 5 Free"; + content: "\f0c9"; + font-weight: bold; + color: #ddd; + font-size: 1.3rem; + } + + .nav { + top: 40px; + height: calc(100% - 80px); + } + + .site-name.hide { + display: none; + } + + #spacer { + display: none; + } + + #main { + margin: 10px 15px; + } + + .footer-note { + display: none; + } + + h1 { + font-size: 1.45rem; + } + + h2 { + font-size: 1.3rem; + } + + h3 { + font-size: 1.2rem; + } + + h4 { + font-size: 1.15rem; + } + + h5 { + font-size: 1.1rem; + } + + h6 { + font-size: 1.0rem; + } +} + +@media screen and (min-width: 768px) { + .home-top { + display: none; + } + + .home { + height: 100px; + } + + .home .title { + margin-top: 5px; + margin-bottom: 2px; + } + + .home .version { + margin-bottom: 2px; + color: #aaa; + } + + .nav { + top: 100px; + height: calc(100% - 140px); + } + + #main { + margin: 10px 50px 10px 30px; + } + + .hamburger { + display: none; + } + + .arrow { + position: fixed; + top: calc(50% - 23px); + bottom: calc(50% - 23px); + border: 1px solid #eee; + border-radius: 0px 14px 14px 0px; + padding-left: 3px; + padding-right: 6px; + margin-left: -10px; + transition: 0.3s ease 0s; + } + + .arrow::before { + font-family: "Font Awesome 5 Free"; + content: "\f053"; + font-weight: bold; + color: #fff; + font-size: 1rem; + } + + .arrow.hide::before { + content: "\f054"; + } + + .arrow:hover { + background: #555; + color: #ddd; + border-color: #555; + margin-left: 0px; + } + + aside.hide { + display: none; + } + + h1 { + font-size: 1.65rem; + } + + h2 { + font-size: 1.5rem; + } + + h3 { + font-size: 1.25rem; + } + + h4 { + font-size: 1.2rem; + } + + h5 { + font-size: 1.1rem; + } + + h6 { + font-size: 1.0rem; + } +} + +/************************************************** + Table style +**************************************************/ +table { + border-collapse: collapse; + font-size: 0.9rem; + margin: auto; +} + +th, td { + text-align: center; + padding: 2px 4px; +} + +th { + color: darkblue; + background: #eee; + border: 1px solid #333; +} + +td { + color: black; + border: 1px solid #b9b9b9; +} + +tr th:first-child, tr td:first-child { + border-left: 1px solid #333366; +} + +tr th:last-child, tr td:last-child { + border-right: 1px solid #333366; +} + +tr:first-child td, tr:first-child th { + border-top: 1px solid #333366; +} + +tr:last-child td, tr:last-child th { + border-bottom: 1px solid #333366; +} + +tbody tr:nth-child(2n+1) td { + background: #fafafa; +} + +.admonition { + margin-top: 20px; + margin-bottom: 20px; + padding: 0px; + padding-bottom: 10px; +} + +.admonition.note { + background: #F0F0FF; +} + +.note p.admonition-title { + color: white; + background: #555599; + margin: 0px; + padding: 4px 8px; +} + +.note p.admonition-title:before { + font-family: "Font Awesome 5 Free"; + content: "\f303"; + font-weight: 900; + padding-right: 5px; + color: white; +} + +.admonition.warning { + background: #FFEEEE; +} + +.warning p.admonition-title { + color: white; + background: #FF6666; + margin: 0px; + padding: 4px 8px; +} + +.warning p.admonition-title:before { + font-family: "Font Awesome 5 Free"; + content: "\f071"; + font-weight: 900; + padding-right: 5px; + color: white; +} + +.admonition p { + margin-top: 5px; + margin-left: 10px; + margin-bottom: 5px; + padding: 4px; +} + +.admonition pre { + margin-top: 5px; + margin-left: 15px; +} diff --git a/mkdocs_ivory/footer.html b/mkdocs_ivory/footer.html new file mode 100644 index 00000000..7b2a4bfb --- /dev/null +++ b/mkdocs_ivory/footer.html @@ -0,0 +1,20 @@ + diff --git a/mkdocs_ivory/img/favicon.ico b/mkdocs_ivory/img/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..e85006a3ce1c6fd81faa6d5a13095519c4a6fc96 GIT binary patch literal 1150 zcmd6lF-yZh9L1kl>(HSEK`2y^4yB6->f+$wD)=oNY!UheIt03Q=;qj=;8*Bap_4*& za8yAl;wmmx5Yyi^7dXN-WYdJ-{qNqpcez|5t#Fr0qTSYcPTG`I2PBk8r$~4kg^0zN zCJe(rhix3do!L$bZ+IuZ{i08x=JR3=e+M4pv0KsKA??{u_*EFfo|`p&t`Vf=jn{)F z1fKk9hWsmYwqWAP^JO*5u*R;*L&dX3H$%S7oB$f0{ISh{QVXuncnzN67WQH2`lip7 zhX+VI$6x$1+$8gMjh4+1l0N#8_0Fh=N#EwpKk{SeE!)SHFB@xQFX3y+8sF#_@!bDW eIdI-IC`$c%>bk?KbPeN9RHtL<1^)v~#xMt8oB^@` literal 0 HcmV?d00001 diff --git a/mkdocs_ivory/js/theme.js b/mkdocs_ivory/js/theme.js new file mode 100644 index 00000000..894c081c --- /dev/null +++ b/mkdocs_ivory/js/theme.js @@ -0,0 +1,21 @@ +function ready() { + $('.nav .section').each(function() { + $(this).click(function(e) { + $(this).toggleClass("hide"); + $(this).parent().children(".subnav").toggleClass("hide"); + }); + }); + + $('.hamburger').click(function(e) { + $('html').toggleClass("show"); + $('aside').toggleClass("show"); + $('.home-top .site-name').toggleClass("hide"); + }); + + $('.arrow').click(function(e) { + $('aside').toggleClass("hide"); + $(this).toggleClass("hide"); + }); +} + +$(ready); diff --git a/mkdocs_ivory/main.html b/mkdocs_ivory/main.html new file mode 100644 index 00000000..62172baf --- /dev/null +++ b/mkdocs_ivory/main.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{# +The entry point for the ReadTheDocs Theme. + +Any theme customisations should override this file to redefine blocks defined in +the various templates. The custom theme should only need to define a main.html +which `{% extends "base.html" %}` and defines various blocks which will replace +the blocks defined in base.html and its included child templates. +#} \ No newline at end of file diff --git a/mkdocs_ivory/mkdocs_theme.yml b/mkdocs_ivory/mkdocs_theme.yml new file mode 100644 index 00000000..d3eecc9f --- /dev/null +++ b/mkdocs_ivory/mkdocs_theme.yml @@ -0,0 +1,10 @@ +# Config options for 'ivory' theme + +static_templates: + - 404.html + +include_search_page: true +search_index_only: false + +highlightjs: true +hljs_languages: [] diff --git a/mkdocs_ivory/nav.html b/mkdocs_ivory/nav.html new file mode 100644 index 00000000..58c27d40 --- /dev/null +++ b/mkdocs_ivory/nav.html @@ -0,0 +1,22 @@ +{%- if nav_item.is_section -%} + +{%- elif nav_item.toc -%} +{%- for toc_item in nav_item.toc -%} +{{ nav_item.title }} +{%- endfor %} +{%- else %} +{{ nav_item.title }} +{%- endif -%} + +{%- if nav_item == page or nav_item.children %} + +{%- endif %} diff --git a/mkdocs_ivory/repo.html b/mkdocs_ivory/repo.html new file mode 100644 index 00000000..26d98bdc --- /dev/null +++ b/mkdocs_ivory/repo.html @@ -0,0 +1,19 @@ +
+ {%- if config.repo_name %} + + {%- endif %} + {%- if page.previous_page %} + + {%- endif %} + {%- if page.next_page %} + + {%- endif %} +
\ No newline at end of file diff --git a/mkdocs_ivory/search.html b/mkdocs_ivory/search.html new file mode 100644 index 00000000..08fddf22 --- /dev/null +++ b/mkdocs_ivory/search.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} + +{% block content %} + +

Search Results

+ + + +
+ Searching... +
+ +{% endblock %} \ No newline at end of file diff --git a/mkdocs_ivory/searchbox.html b/mkdocs_ivory/searchbox.html new file mode 100644 index 00000000..04d935d6 --- /dev/null +++ b/mkdocs_ivory/searchbox.html @@ -0,0 +1,5 @@ +
+
+ +
+
\ No newline at end of file diff --git a/mkdocs_ivory/toc.html b/mkdocs_ivory/toc.html new file mode 100644 index 00000000..fedfec3f --- /dev/null +++ b/mkdocs_ivory/toc.html @@ -0,0 +1,7 @@ +{%- for toc_item in page.toc %} +{%- if toc_item.children %} +{%- for toc_item in toc_item.children %} + +{%- endfor %} +{%- endif %} +{%- endfor %} \ No newline at end of file From a2f1860f133731057a622ee67b68a7d36fb032c3 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:35:49 -0400 Subject: [PATCH 03/11] Update mkdocs.yml --- mkdocs.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index bf1e31fe..42d4a763 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -6,6 +6,14 @@ nav: theme: name: null - custom_dir: 'mkdocs_ivory' + custom_dir: 'mkdocs_docskimmer' include_search_page: true - + search_index_only: false + static_templates: + - 404.html + +plugins: ['search'] + +# add theme version number here +extra: + version: 0.3.x From 1512f0070abc8ca1f08d1656e8c5cc998de16980 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:36:54 -0400 Subject: [PATCH 04/11] Update mkdocs.yml --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 42d4a763..447a6e65 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -6,7 +6,7 @@ nav: theme: name: null - custom_dir: 'mkdocs_docskimmer' + custom_dir: 'mkdocs_ivory' include_search_page: true search_index_only: false static_templates: From 16a1a9632129adb83facc045f6b35a0cc389e49d Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:42:35 -0400 Subject: [PATCH 05/11] Update mkdocs.yml --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 447a6e65..26b31e91 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ site_name: PySimpleGUI # mkdocs.yml: - +repo_url: https://github.com/PySimpleGUI/PySimpleGUI nav: ## add your custom pages hierarchy here From d5c178d0ee6c63e0ea99aab3f3c9849d914d65c1 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:50:12 -0400 Subject: [PATCH 06/11] Update readthedocs.yml --- readthedocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readthedocs.yml b/readthedocs.yml index 7e741592..66e01d09 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -2,8 +2,8 @@ version: 2 python: - version: 3.6 + version: 3.7 mkdocs: configuration: mkdocs.yml - + version: 2 From 69a2c41878b17ea47a665e3506ce8c5ce2a86d15 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:50:57 -0400 Subject: [PATCH 07/11] Update readthedocs.yml --- readthedocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index 66e01d09..91ce59d5 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -6,4 +6,3 @@ python: mkdocs: configuration: mkdocs.yml - version: 2 From 2d8340eff70bcfc0f5bde448726e762227fdc7c5 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:52:15 -0400 Subject: [PATCH 08/11] Update mkdocs.yml --- mkdocs.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 26b31e91..82e429bc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,8 +1,6 @@ site_name: PySimpleGUI # mkdocs.yml: repo_url: https://github.com/PySimpleGUI/PySimpleGUI -nav: - ## add your custom pages hierarchy here theme: name: null From 79f279fa63b7250eb05fc62a7095872c440b6095 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 13:54:11 -0400 Subject: [PATCH 09/11] Update readthedocs.yml --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index 91ce59d5..cd810583 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -2,7 +2,7 @@ version: 2 python: - version: 3.7 + version: 3.6 mkdocs: configuration: mkdocs.yml From 0691ff07e40b6427ec987791c452306542b16230 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Mon, 27 Sep 2021 14:03:19 -0400 Subject: [PATCH 10/11] Update mkdocs.yml --- mkdocs.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 82e429bc..c054598d 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,17 +1 @@ site_name: PySimpleGUI -# mkdocs.yml: -repo_url: https://github.com/PySimpleGUI/PySimpleGUI - -theme: - name: null - custom_dir: 'mkdocs_ivory' - include_search_page: true - search_index_only: false - static_templates: - - 404.html - -plugins: ['search'] - -# add theme version number here -extra: - version: 0.3.x From 7357606805a566bee95ca1707db3ab38dccb45e2 Mon Sep 17 00:00:00 2001 From: PySimpleGUI <46163555+PySimpleGUI@users.noreply.github.com> Date: Tue, 28 Sep 2021 17:18:39 -0400 Subject: [PATCH 11/11] Update mkdocs.yml --- mkdocs.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index c054598d..50fa553a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1 +1,11 @@ site_name: PySimpleGUI + +site_name: PySimpleGUI +# mkdocs.yml: + +nav: + ## add your custom pages hierarchy here + +theme: + name: null + custom_dir: 'mkdocs_ivory'