forked from ThemeFuse/Unyson-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
26 lines (22 loc) · 736 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- coding: utf-8 -*-
import sys, os
from sphinx.highlighting import lexers
from pygments.lexers.web import PhpLexer
from datetime import date
source_suffix = '.rst'
master_doc = 'index'
project = 'Unyson Framework'
copyright = `date.today().year` + ' Unyson | Theming Fast & Easy ' + \
'<br>Developed by: <a target="_blank" href="http://themefuse.com">ThemeFuse</a> Icons by: <a target="_blank" href="http://pixelkit.com">PixelKit</a>'
#version = ''
#release = ''
#exclude_patterns = []
html_favicon = 'favicon.ico'
html_theme_path = ["_themes"]
html_theme = 'themefuse'
man_pages = [
('index', 1)
]
lexers['php'] = PhpLexer(startinline=True)
lexers['php-annotations'] = PhpLexer(startinline=True)
primary_domain = 'php'