-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.py
More file actions
31 lines (25 loc) · 771 Bytes
/
settings.py
File metadata and controls
31 lines (25 loc) · 771 Bytes
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
27
28
29
30
31
settings = {
'AUTHOR': u'Rishab Arora',
'SITENAME' : u'Arthik Tangi',
'SITEURL' : 'http://www.arthiktangi.com',
'TITLE' : u'Arthik Tangi: Random thoughts from randomized minds',
'TIMEZONE' : 'Asia/Kolkata',
'GOOGLE_ANALYTICS' : "UA-xxxxx-1",
'DISQUS_ID' : 'xxxx',
'COMIC_CSV' : 'contents/list.csv',
'STATIC' : {'images'},
'OUTPUT_PATH' : 'output',
'EXTRA_MENU' : {
('Home','#'),
('Archives','/a.html'),
('Best of AT','/b.html'),
('About','/c.html'),
('I want in','/d.html')
},
'THEME': 'arthiktangi',
'FOOTER': """
This work is licensed under a Creative Commons Attribution-NonCommercial 2.5 License.
"""
}
def get_settings():
return settings