-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpelicanconf.py
53 lines (40 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'Ling\u1e85ars'
SITENAME = u'Ling\u1e85ars'
SITEURL = u'http://localhost:8000'
PATH = 'content'
TIMEZONE = 'Europe/Madrid'
DEFAULT_LANG = u'es'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
USE_FOLDERS_AS_CATEGORY = True
MAIN_MENU = True
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'),
('You can modify those links in your config file', '#'),)
# Social widget
SOCIAL = (('github', 'https://github.com/Lingwars'),
('twitter', 'https://twitter.com/lingwars'),
('The team', SITEURL + '/authors.html'),
)
DEFAULT_PAGINATION = 10
SUMMARY_MAX_LENGTH = 50
PLUGIN_PATHS = ['plugins']
PLUGINS = ['autopages']
THEME = 'theme/notmyidea'
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
STATIC_PATHS = ['images', 'pdfs', 'extra/favicon.ico']
EXTRA_PATH_METADATA = {
'extra/favicon.ico': {'path': 'favicon.ico'}
}
MAILCHIMP = {'u': '08b4bbc276fe5d9a9b89f7bed',
'id': '90dcb9a523'}