You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
320 B
9 lines
320 B
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
|
|
)
|
|
|