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

AUTHOR = u'bnewbold'
SITENAME = u'archive3k.org'
SITEURL = u'https://archive3k.org'

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 = {
    'static/robots.txt': { 'path': 'robots.txt' },
    'static/favicon.ico': { 'path': 'favicon.ico' },
    }

THEME = "theme"

PLUGINS = ['sitemap', 'headerid']

SITEMAP = {'format': 'xml'}

ARTICLE_URL = '{date:%Y}/{slug}/'
ARTICLE_LANG_URL = '{date:%Y}/{slug}/{lang}/'
ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html'
ARTICLE_LANG_SAVE_AS = '{date:%Y}/{slug}/{lang}/index.html'
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
ARCHIVES_SAVE_AS = 'archives/index.html'  
YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html'
AUTHOR_URL = 'author/{slug}/'
AUTHOR_SAVE_AS = 'author/{slug}/index.html'
AUTHORS_SAVE_AS = 'author/index.html'
TAG_URL = 'tag/{slug}/'
TAG_SAVE_AS = 'tag/{slug}/index.html'
TAGS_SAVE_AS = 'tag/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 = None
#TAG_FEED_ATOM = 'feeds/%s.atom.xml'
#FEED_ALL_RSS = 'feeds/all.rss.xml'
#CATEGORY_FEED_RSS = None
#TAG_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