Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed artwork/logo.png
Binary file not shown.
Binary file removed docs/_static/logo_short.png
Binary file not shown.
24 changes: 24 additions & 0 deletions docs/_static/quart-horizontal-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions docs/_static/quart-horizontal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions docs/_static/quart-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@

html_theme = "pydata_sphinx_theme"
html_theme_options = {
"logo": {
"image_light": "_static/quart-horizontal.svg",
"image_dark": "_static/quart-horizontal-dark.svg",
},
"external_links": [
{"name": "Source code", "url": "https://github.com/pallets/quart"},
{"name": "Issues", "url": "https://github.com/pallets/quart/issues"},
Expand All @@ -42,7 +46,7 @@
],
}
html_static_path = ["_static"]
html_logo = "_static/logo_short.png"
html_favicon = "_static/quart-icon.svg"


def run_apidoc(_):
Expand Down
13 changes: 9 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

.. title:: Quart documentation

.. image:: _static/logo.png
:width: 300px
:alt: Quart logo
:align: right
.. image:: _static/quart-horizontal.svg
:class: only-light
:height: 200px
:align: center

.. image:: _static/quart-horizontal-dark.svg
:class: only-dark
:height: 200px
:align: center

Quart
=====
Expand Down