-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpelicanconf.py
38 lines (31 loc) · 956 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = u'XMPP Members'
SITENAME = u'XMPP Standards Foundation'
SITEURL = 'http://xmpp.org'
TIMEZONE = 'Europe/London'
DELETE_OUTPUT_DIRECTORY = True
TYPOGRIFY = True
DISPLAY_PAGES_ON_MENU = False
DEFAULT_LANG = u'en'
DEFAULT_PAGINATION = 20
DEFAULT_CATEGORY = 'post'
# GOOGLE_ANALYTICS = ''
ARTICLE_URL = '{date:%Y}/{date:%m}/{date:%d}/{slug}/'
ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html'
FEED_DOMAIN = 'http://xmpp.org/feed'
FEED_ALL_ATOM = 'atom.xml'
FEED_ALL_RSS = 'rss.xml'
STATIC_PATHS = ['images', 'js', 'css']
FILES_TO_COPY = (('robots.txt', 'robots.txt'),
)
THEME = 'themes/xsf'
MARKUP = (('md',
'rst')
)
# Blogroll
LINKS = (('XMPP Wiki', 'http://wiki.xmpp.org/'),
)
# Social widget
SOCIAL = (
)