-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
42 lines (30 loc) · 1.12 KB
/
settings.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
AUTHOR = 'xxxxxxxx xxxxxxxxxxxxx'
SITENAME = "xxxxxxxxxxxx"
SITEURL = 'http://xxxxxxxxxxxxxxxxx'
TIMEZONE = "Europe/Madrid"
GITHUB_URL = 'http://github.com/XXXXX'
DISQUS_SITENAME = "XXXXXXXXXX"
EMAIL = "[email protected]"
PDF_GENERATOR = False
REVERSE_CATEGORY_ORDER = True
LOCALE = 'en_US'
DEFAULT_PAGINATION = 5
THEME = "iris"
FEED_RSS = 'feeds/all.rss.xml'
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
LINKS = (('XXXXX XXXX', 'http://YYYYYYYYYYY.ZZZ'),)
SOCIAL = (('twitter', 'http://twitter.com/XXXXXX'),
('linkedin', 'http://www.linkedin.com/in/XXXXXXX'),
('github', GITHUB_URL),)
OUTPUT_PATH = 'output'
PATH = 'src'
ARTICLE_URL = "posts/{date:%Y}/{date:%m}/{slug}/"
ARTICLE_SAVE_AS = "posts/{date:%Y}/{date:%m}/{slug}/index.html"
GOSQUARED_SITENAME = "XXX-YYYYYY-X"
# global metadata to all the contents
#DEFAULT_METADATA = (('yeah', 'it is'),)
# static paths will be copied under the same name
STATIC_PATHS = ["images", ]
# A list of files to copy from the source to the destination
#FILES_TO_COPY = (('extra/robots.txt', 'robots.txt'),)