diff options
| author | J08nY | 2024-07-16 19:05:15 +0200 |
|---|---|---|
| committer | J08nY | 2024-07-16 19:05:15 +0200 |
| commit | 468edcd4eece512c09f6a0d152fe24b2db0e52e7 (patch) | |
| tree | b10f5064b795206ed289ff2cd3404773d84762e9 /docs | |
| parent | 1c0dc0c70324c915ec499bda6a0f0a2b55eea20b (diff) | |
| download | pyecsca-468edcd4eece512c09f6a0d152fe24b2db0e52e7.tar.gz pyecsca-468edcd4eece512c09f6a0d152fe24b2db0e52e7.tar.zst pyecsca-468edcd4eece512c09f6a0d152fe24b2db0e52e7.zip | |
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_templates/nav.html | 4 | ||||
| -rw-r--r-- | docs/conf.py | 17 |
2 files changed, 19 insertions, 2 deletions
diff --git a/docs/_templates/nav.html b/docs/_templates/nav.html new file mode 100644 index 0000000..300868f --- /dev/null +++ b/docs/_templates/nav.html @@ -0,0 +1,4 @@ +<ul style="margin-top: 1em"> + <li class="toctree-l1"><a href="https://github.com/J08nY/pyecsca/"><i class="fab fa-fw fa-github"></i> Source code</a></li> + <li class="toctree-l1"><a href="https://pypi.org/project/pyecsca/"><i class="fab fa-fw fa-file"></i> Releases</a></li> +</ul> diff --git a/docs/conf.py b/docs/conf.py index c28eb52..a83ec57 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -100,7 +100,11 @@ html_theme_options = { 'code_font_family': "'IBM Plex Mono', 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace", 'caption_font_family': "'IBM Plex Sans', 'Helvetica Neue', sans-serif", 'head_font_family': "'IBM Plex Sans', 'Helvetica Neue', sans-serif", - 'font_family': "'IBM Plex Sans', 'Helvetica Neue', sans-serif" + 'font_family': "'IBM Plex Sans', 'Helvetica Neue', sans-serif", + 'github_button': False, + 'github_banner': False, + 'github_user': 'J08nY', + 'github_repo': 'pyecsca' } # Add any paths that contain custom static files (such as style sheets) here, @@ -124,7 +128,16 @@ html_css_files = [ # default: ``['localtoc.html', 'relations.html', 'sourcelink.html', # 'searchbox.html']``. # -# html_sidebars = {} + +html_sidebars = { + '**': [ + 'about.html', + 'navigation.html', + 'nav.html', + 'relations.html', + 'searchfield.html' + ] +} # -- Options for HTMLHelp output --------------------------------------------- |
