aboutsummaryrefslogtreecommitdiff
path: root/pelicanconf.py
blob: 6a0f8141fa9b642e129cb171e90db850f681d745 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env python
# -*- coding: utf-8 -*- #

AUTHOR = u'Chimrod'
SITENAME = u'Chimrod'
SITEURL = '//localhost:8000'

TIMEZONE = 'Europe/Paris'

DEFAULT_LANG = u'fr'

# Blogroll
#LINKS =  (('Pelican', 'http://docs.notmyidea.org/alexis/pelican/'),
#          ('Python.org', 'http://python.org'),
#          ('Jinja2', 'http://jinja.pocoo.org'),
#          ('You can modify those links in your config file', '#'),)

# Social widget
#SOCIAL = (('You can add links in your config file', '#'),
#          ('Another social link', '#'),)

FEED_DOMAIN = SITEURL
FEED_RSS = 'feed'
FEED_ATOM = 'feeds/atom.xml'
FEED_MAX_ITEMS=5
TAG_FEED_RSS = 'feeds/{slug}.xml'
TAG_FEED_ATOM = 'feeds/{slug}.atom.xml'
CATEGORY_FEED_RSS = 'feeds/{slug}.rss.xml'

DEFAULT_PAGINATION = FEED_MAX_ITEMS

ARTICLE_URL = u'{date:%Y}/{date:%m}/{slug}/'
ARTICLE_SAVE_AS = u'{date:%Y}/{date:%m}/{slug}/index.html'

STATIC_SAVE_AS=u'{path}'

THEME= 'Flex'
PYGMENTS_STYLE = "monokai"
SITELOGO= '/images/profile.png'
SITETITLE= 'Chimrod'
DEFAULT_LANG = "fr_FR"
CUSTOM_CSS='custom.css'
#SITESUBTITLE= 'Un site d\'informatique'
MAIN_MENU=True
LINKS= ( ("git","http://git.chimrod.com")
       , )
HOME_HIDE_TAGS=False
I18N_TEMPLATES_LANG = "en"
DEFAULT_LANG = "fr_FR"
LOCALE="fr_FR"

TYPOGRIFY = False
TEMPLATE_PAGES = {'../extras/404.html': '404.html'}

STATIC_PATHS = \
    ( '../extras/robots.txt'
    , '../extras/htaccess'
    , '../extras/custom.css'
    )

EXTRA_PATH_METADATA = \
    { '../extras/robots.txt': \
      {'path': 'robots.txt'}
    , '../extras/htaccess': \
      {'path': '.htaccess'}
    , '../extras/custom.css': \
      {'path': 'custom.css'}}


PLUGIN_PATHS = ['plugins']


PLUGINS = \
  ( 'related_posts'
  , 'typogrify'
  , 'i18n_subsites' )

RELATED_POSTS_IGNORE_TAGS = ["Libre"]

SUMMARY_MAX_LENGTH=100

DOCUTILS_SETTINGS = \
    { "footnote_references":'superscript'
    , 'strip_comments': 'True' }

JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n']}