aboutsummaryrefslogtreecommitdiffstats
path: root/pelicanconf.py
blob: e92521b29a19f016bcb9502ecdee57bd745b8cfa (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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals

AUTHOR = u'bnewbold'
SITENAME = u'bnewbold.net'
SITEURL = u'http://bnewbold.net'

DEFAULT_DATE = None
OUTPUT_SOURCES = True
DEFAULT_CATEGORY = ''
OUTPUT_SOURCES_EXTENSION = '.raw'
SLUGIFY_SOURCE = 'basename'
DISPLAY_PAGES_ON_MENU = False
DISPLAY_CATEGORIES_ON_MENU = False

PATH = '.'
STATIC_PATHS = ['static', '.well-known']
ARTICLE_PATHS = ['posts']
PAGE_PATHS = ['pages']
PLUGIN_PATHS = ['plugins']

EXTRA_PATH_METADATA = {
    #'well-known/keybase.txt': {'path': '.well-known/keybase.txt'},
    }

THEME = "theme"

PLUGINS = ['sitemap', 'headerid']

SITEMAP = {'format': 'xml'}

ARTICLE_URL = '{date:%Y}/{slug}/'
ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html'
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html'

MD_EXTENSIONS = ["codehilite(css_class=highlight)", "extra", "toc"]

TIMEZONE = 'UTC'

DEFAULT_LANG = u'en'

# Feed generation is usually not desired when developing
FEED_DOMAIN = SITEURL
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
FEED_ALL_RSS = 'feeds/all.rss.xml'
CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'

# 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 = (('You can add links in your config file', '#'),
          ('Another social link', '#'),)

DEFAULT_PAGINATION = False

# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True