diff --git a/doc/conf.py b/doc/conf.py
index 89834add8f44768b812d513af75f5a6dbebc2a24..b501a3139851055015ba912ea353c00ad41ab375 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -26,34 +26,34 @@
 
 # If your documentation needs a minimal Sphinx version, state it here.
 #
-# needs_sphinx = '1.0'
+# needs_sphinx = "1.0"
 
 # Add any Sphinx extension module names here, as strings. They can be
-# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
+# extensions coming with Sphinx (named "sphinx.ext.*") or your custom
 # ones.
-extensions = ['sphinx.ext.autodoc',
-    'sphinx.ext.doctest',
-    'sphinx.ext.intersphinx',
-    'sphinx.ext.mathjax',
-    'sphinx.ext.viewcode']
+extensions = ["sphinx.ext.autodoc",
+    "sphinx.ext.doctest",
+    "sphinx.ext.intersphinx",
+    "sphinx.ext.mathjax",
+    "sphinx.ext.viewcode"]
 autoclass_content = "class"
 
 # Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
+templates_path = ["_templates"]
 
 # The suffix(es) of source filenames.
 # You can specify multiple suffix as a list of string:
 #
 # source_suffix = ['.rst', '.md']
-source_suffix = '.rst'
+source_suffix = ".rst"
 
 # The master toctree document.
-master_doc = 'index'
+master_doc = "index"
 
 # General information about the project.
-project = 'pytools'
-copyright = '2017, Andreas Kloeckner'
-author = 'Andreas Kloeckner'
+project = "pytools"
+copyright = "2017, Andreas Kloeckner"
+author = "Andreas Kloeckner"
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
@@ -61,7 +61,8 @@ author = 'Andreas Kloeckner'
 #
 # The short X.Y version.
 ver_dic = {}
-exec(compile(open("../pytools/version.py").read(), "../pytools/version.py", 'exec'), ver_dic)
+exec(compile(open("../pytools/version.py").read(), "../pytools/version.py", "exec"),
+        ver_dic)
 version = ".".join(str(x) for x in ver_dic["VERSION"])
 release = ver_dic["VERSION_TEXT"]
 
@@ -75,10 +76,10 @@ language = None
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
 # This patterns also effect to html_static_path and html_extra_path
-exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
+exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
 
 # The name of the Pygments (syntax highlighting) style to use.
-pygments_style = 'sphinx'
+pygments_style = "sphinx"
 
 # If true, `todo` and `todoList` produce output, else they produce nothing.
 todo_include_todos = False
@@ -89,24 +90,11 @@ todo_include_todos = False
 # The theme to use for HTML and HTML Help pages.  See the documentation for
 # a list of builtin themes.
 #
-html_theme = 'alabaster'
+html_theme = "furo"
 
 html_theme_options = {
-        "extra_nav_links": {
-            "🚀 Github": "https://github.com/inducer/pytools",
-            "💾 Download Releases": "https://pypi.python.org/pypi/pytools",
-            }
         }
 
-html_sidebars = {
-    '**': [
-        'about.html',
-        'navigation.html',
-        'relations.html',
-        'searchbox.html',
-    ]
-}
-
 # Theme options are theme-specific and customize the look and feel of a theme
 # further.  For a list of options available for each theme, see the
 # documentation.
@@ -122,35 +110,35 @@ html_sidebars = {
 # -- Options for HTMLHelp output ------------------------------------------
 
 # Output file base name for HTML help builder.
-htmlhelp_basename = 'pytoolsdoc'
+htmlhelp_basename = "pytoolsdoc"
 
 
 # -- Options for LaTeX output ---------------------------------------------
 
 latex_elements = {
-    # The paper size ('letterpaper' or 'a4paper').
+    # The paper size ("letterpaper" or "a4paper").
     #
-    # 'papersize': 'letterpaper',
+    # "papersize": "letterpaper",
 
-    # The font size ('10pt', '11pt' or '12pt').
+    # The font size ("10pt", "11pt" or "12pt").
     #
-    # 'pointsize': '10pt',
+    # "pointsize": "10pt",
 
     # Additional stuff for the LaTeX preamble.
     #
-    # 'preamble': '',
+    # "preamble": '',
 
     # Latex figure (float) alignment
     #
-    # 'figure_align': 'htbp',
+    # "figure_align": "htbp",
 }
 
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title,
 #  author, documentclass [howto, manual, or own class]).
 latex_documents = [
-    (master_doc, 'pytools.tex', 'pytools Documentation',
-     'Andreas Kloeckner', 'manual'),
+    (master_doc, "pytools.tex", "pytools Documentation",
+     "Andreas Kloeckner", "manual"),
 ]
 
 
@@ -159,7 +147,7 @@ latex_documents = [
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    (master_doc, 'pytools', 'pytools Documentation',
+    (master_doc, "pytools", "pytools Documentation",
      [author], 1)
 ]
 
@@ -170,9 +158,9 @@ man_pages = [
 # (source start file, target name, title, author,
 #  dir menu entry, description, category)
 texinfo_documents = [
-    (master_doc, 'pytools', 'pytools Documentation',
-     author, 'pytools', 'One line description of project.',
-     'Miscellaneous'),
+    (master_doc, "pytools", "pytools Documentation",
+     author, "pytools", "One line description of project.",
+     "Miscellaneous"),
 ]
 
 
diff --git a/doc/index.rst b/doc/index.rst
index 1088516f820e07ea09eef446ea53e00e883ab0fb..25f26c6244c9c8c679e05669e463079aa0b0c373 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -12,6 +12,8 @@ Welcome to pytools's documentation!
     tag
     codegen
     misc
+    🚀 Github <https://github.com/inducer/pytools>
+    💾 Download Releases <https://pypi.python.org/pypi/pytools>
 
 Indices and tables
 ==================