Blog only used/exists in www, don't import it in docs site
This commit is contained in:
parent
2da9142520
commit
5a1f927310
|
@ -5,12 +5,6 @@ import sys
|
||||||
import alabaster
|
import alabaster
|
||||||
|
|
||||||
|
|
||||||
# Add local blog extension
|
|
||||||
sys.path.append(os.path.abspath('.'))
|
|
||||||
extensions = ['blog']
|
|
||||||
rss_link = 'http://paramiko.org'
|
|
||||||
rss_description = 'Paramiko project news'
|
|
||||||
|
|
||||||
# Alabaster theme
|
# Alabaster theme
|
||||||
html_theme_path = [alabaster.get_path()]
|
html_theme_path = [alabaster.get_path()]
|
||||||
# Paths relative to invoking conf.py - not this shared file
|
# Paths relative to invoking conf.py - not this shared file
|
||||||
|
|
|
@ -2,3 +2,10 @@
|
||||||
import os, sys
|
import os, sys
|
||||||
sys.path.append(os.path.abspath('..'))
|
sys.path.append(os.path.abspath('..'))
|
||||||
from shared_conf import *
|
from shared_conf import *
|
||||||
|
|
||||||
|
# Add local blog extension
|
||||||
|
sys.path.append(os.path.abspath('.'))
|
||||||
|
extensions = ['blog']
|
||||||
|
rss_link = 'http://paramiko.org'
|
||||||
|
rss_description = 'Paramiko project news'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue