-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
58 lines (42 loc) · 1.13 KB
/
pelicanconf.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import datetime
AUTHOR = '[email protected]'
SITENAME = 'Cottage Labs'
SITEURL = ''
PATH = 'content'
TIMEZONE = 'GB'
DEFAULT_LANG = 'en'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
DEFAULT_PAGINATION = False
DEFAULT_DATE = 'fs'
THEME = 'themes/simple'
THEME_STATIC_PATHS = ['static']
STATIC_DIR = 'content/images'
INDEX_SAVE_AS = 'index.html'
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
CSS_FILE = "scss/main.css"
USE_FOLDER_AS_CATEGORY = True
PAGE_PATHS = ['pages']
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
PAGE_TEMPLATE = 'page'
ARTICLE_PATHS = ['projects']
ARTICLE_URL = 'projects/{slug}/'
ARTICLE_SAVE_AS = 'projects/{slug}/index.html'
ARTICLE_TEMPLATE = 'project'
TAGS_SAVE_AS = 'projects/index.html'
TAG_SAVE_AS = 'projects/{slug}/index.html'
TAG_URL = 'projects/{slug}'
PLUGINS = [
'yaml_metadata',
'css_cache_bust'
]
JINJA_CONTEXTS = {
'now': datetime.datetime.now(datetime.UTC),
}
NOW = datetime.datetime.now()