diff --git a/docs/Makefile b/docs/Makefile index 3b85476..13201e2 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -181,3 +181,6 @@ pseudoxml: $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml @echo @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." + +serve: + cd $(BUILDDIR)/dirhtml && python3 -m http.server 8005 diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html index 76d4c9f..46aa946 100644 --- a/docs/_templates/layout.html +++ b/docs/_templates/layout.html @@ -40,3 +40,13 @@ ga('send', 'pageview'); {% endblock %} + +{%- block footer %} + +{% endblock %} diff --git a/docs/conf.py b/docs/conf.py index ebc2b87..81fcc6f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,7 @@ master_doc = 'index' # General information about the project. project = u'pythonguide' -copyright = u'2016. A Kenneth Reitz Project. CC BY-NC-SA 3.0' +copyright = u'2011–2018 Kenneth Reitz & Real Python. CC BY-NC-SA 3.0' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -241,7 +241,7 @@ man_pages = [ epub_title = u'pythonguide' epub_author = u'Kenneth Reitz' epub_publisher = u'Kenneth Reitz' -epub_copyright = u'2016, Kenneth Reitz' +epub_copyright = u'2011–2018, Kenneth Reitz & Real Python' # The language of the text. It defaults to the language option # or en if the language is not set.