-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpelicanconf.py
45 lines (34 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'Cyclic Materials'
SITEURL = '//cyclicmaterials.github.io'
SITENAME = u'Cyclic Materials for Cycle.js'
SITETITLE = u'Cyclic Materials'
SITESUBTITLE = u'A Material Design Components Library Collection for Cycle.js'
SITEDESCRIPTION = u'A Material Design Components Library Collection'
ROBOTS = u'index, follow'
GOOGLE_ANALYTICS = u'UA-70718355-1'
THEME = u'./themes/Flex'
PATH = u'content'
TIMEZONE = u'Atlantic/Reykjavik'
DEFAULT_LANG = u'en'
OG_LOCALE = u'en_US'
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
USE_FOLDER_AS_CATEGORY = False
MAIN_MENU = True
PATH_METADATA = '\A(?P<category>[^/]+)/(?P<date>\d{4}/\d{2}/\d{2})-(?P<slug>.*)(.md|.rst)'
ARTICLE_URL = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
LINKS = (('Cycle.js', '//cycle.js.org'),)
MENUITEMS = (('Archives', '/archives.html'),
('Categories', '/categories.html'),
('Tags', '/tags.html'),)
COPYRIGHT_YEAR = 2015
DEFAULT_PAGINATION = 4
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True