aboutsummaryrefslogtreecommitdiffstats
path: root/docs/sphinx/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sphinx/conf.py')
-rw-r--r--docs/sphinx/conf.py19
1 files changed, 8 insertions, 11 deletions
diff --git a/docs/sphinx/conf.py b/docs/sphinx/conf.py
index 3cd48af..dbc21dd 100644
--- a/docs/sphinx/conf.py
+++ b/docs/sphinx/conf.py
@@ -27,17 +27,14 @@ from __future__ import unicode_literals
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
-try:
- import sphinxcontrib.gist # NOQA
- extensions = ['sphinxcontrib.gist']
-except ImportError:
- extensions = []
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.mathjax']
+# extensions.append('sphinxcontrib.gist')
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
-source_suffix = '.txt'
+source_suffix = '.rst'
# The encoding of source files.
# source_encoding = 'utf-8-sig'
@@ -47,16 +44,16 @@ master_doc = 'index'
# General information about the project.
project = 'Nikola'
-copyright = '2012-2015, The Nikola Contributors'
+copyright = '2012-2020, The Nikola Contributors'
# The version info for the project yo're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = '7.6.4'
+version = '8.1.2'
# The full version, including alpha/beta/rc tags.
-release = '7.6.4'
+release = '8.1.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -120,7 +117,7 @@ html_theme = 'default'
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
-# html_logo = None
+html_logo = "../../logo/nikola-50px-transparent.png"
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
@@ -244,7 +241,7 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'Nikola', 'Nikola Documentation',
- 'The Nikola Contributors', 'Nikola', 'One line description of project.',
+ 'The Nikola Contributors', 'Nikola', 'A static site generator.',
'Miscellaneous'),
]