mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00

It was triggering a warning : > copying static files... WARNING: html_static_path entry u'/home/jocelyn/dev/ihatemoney/docs/_static' does not exist To my knowledge it was not used, and the _static dir do not even exist. Let me know if I am wrong.
19 lines
420 B
Python
19 lines
420 B
Python
# -*- coding: utf-8 -*-
|
|
import sys, os
|
|
templates_path = ['_templates']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
|
|
project = u'I hate money'
|
|
copyright = u'2011, The \'I hate money\' team'
|
|
|
|
version = '1.0'
|
|
release = '1.0'
|
|
|
|
exclude_patterns = ['_build']
|
|
pygments_style = 'sphinx'
|
|
|
|
sys.path.append(os.path.abspath('_themes'))
|
|
html_theme_path = ['_themes']
|
|
html_theme = 'pelican'
|
|
html_theme_options = { 'nosidebar': True }
|