Skip to content

Commit e7edb08

Browse files
authored
Merge pull request #63 from LibreSign/fix/404
fix: 404
2 parents f63d3cb + 6609c48 commit e7edb08

File tree

1 file changed

+2
-29
lines changed

1 file changed

+2
-29
lines changed

main/conf.py

Lines changed: 2 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,5 @@
11
import os
22
import sys
33
import datetime
4-
5-
now = datetime.datetime.now()
6-
7-
copyright = str(now.year) + ' LibreCode coop'
8-
project = 'LibreSign Documentation'
9-
author = 'LibreSign Team'
10-
release = '1.0'
11-
12-
13-
release = '1.0'
14-
15-
extensions = [
16-
'sphinx_rtd_theme',
17-
'sphinx_rtd_dark_mode',
18-
]
19-
20-
templates_path = ['_templates']
21-
exclude_patterns = []
22-
23-
html_theme = 'sphinx_rtd_theme'
24-
html_logo = "images/logo.png"
25-
html_theme_options = {
26-
'style_nav_header_background': '#184c4e',
27-
'logo_only': True,
28-
'navigation_with_keys': True,
29-
'style_external_links': True,
30-
'version_selector': False,
31-
}
32-
4+
sys.path.insert(0, os.path.abspath('../'))
5+
from conf import *

0 commit comments

Comments
 (0)