docs: Add RTD local_settings file, to add custom templates.

pull/1020/head
Damien George 2014-12-21 11:21:06 +00:00
rodzic 9b561a7c0d
commit 7b80d908bf
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,9 @@
import os
# Directory that the project lives in, aka ../..
SITE_ROOT = '/'.join(os.path.dirname(__file__).split('/')[0:-2])
TEMPLATE_DIRS = (
"%s/templates/" % SITE_ROOT, # Your custom template directory, before the RTD one to override it.
"%s/readthedocs/templates/" % SITE_ROOT, # Default RTD template dir
)