kevinbowen777 / bookstore

An online bookstore created with the Django web framework
MIT License
0 stars 1 forks source link

Replace sphinx-rtd-theme with Furo #292

Closed kevinbowen777 closed 1 year ago

kevinbowen777 commented 1 year ago

Install Furo Sphinx theme

Documentation:

"""Sphinx configuration."""
project = "bookstore"
author = "Kevin Bowen"
copyright = f"2023, {author}"
#
html_theme = 'furo'
html_logo = 'django_24.png'
html_title = 'bookstore'
extensions = [
    'sphinx.ext.duration',
]