Skip to content

Commit

Permalink
changed theme to pyramid
Browse files Browse the repository at this point in the history
  • Loading branch information
cguardia committed Jul 13, 2011
1 parent e37e592 commit 563b694
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Expand Up @@ -36,7 +36,7 @@ help:
clean:
-rm -rf $(BUILDDIR)/*

html:
html: _themes
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
Expand Down Expand Up @@ -128,3 +128,6 @@ doctest:
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
@echo "Testing of doctests in the sources finished, look at the " \
"results in $(BUILDDIR)/doctest/output.txt."

_themes:
git clone git://github.com/Pylons/pylons_sphinx_theme.git _themes
8 changes: 7 additions & 1 deletion conf.py
Expand Up @@ -91,7 +91,13 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'default'
sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes']
html_theme = 'pyramid'

html_theme_options = {
'github_url': 'https://github.com/Pylons/pyramid'
}

# 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
Expand Down

0 comments on commit 563b694

Please sign in to comment.